|
|
|
|
|
by landr0id
1 day ago
|
|
>you must go through a system provided shared library rather than make syscalls directly Just to add to this, on Windows for example you're really only supposed to invoke syscalls via ntdll as the syscall table is not stable so their numbering changes over time. You cannot guarantee forward or backward compat if you do not use the library. If you look at some of the syscalls in https://github.com/j00ru/windows-syscalls, you can see they clearly do change over time too. |
|