skni-kod / MicrOS

32-bit operating system with kernel written in C. Created by SKNI "KOD".
GNU General Public License v3.0
56 stars 8 forks source link

Fix for limited amount of syscalls (Issue #97). Max amount of syscall… #111

Closed MinusPL closed 2 years ago

MinusPL commented 2 years ago

Each syscall group has been redefined, compare your changes to new code. If your syscalls are extending group, please change their numbering. If you are providing new syscall group, please change numbering and use one of free group numbers (usually next one that is free). New format is is 0xZZYY, where ZZ means group number and YY is number of syscall in that group. In future some group numbers might be freed due to merging of groups with only few syscalls.

Provides fix for Issue #97.