Hacker News new | ask | show | jobs
by Keyb0ardWarr10r 1689 days ago
https://github.com/matheusmoreira/liblinux/tree/master/sourc...

"access to a very limited subset of Linux system calls" :P Still a cool project though and a good base.

1 comments

Indeed, the library is missing wrappers for most of the system calls. I wrote the functions I needed for the code in the examples directory. I even wrote a little script that lets me see which system calls haven't been implemented yet.

  make system-calls.missing
The library does provide access to every system call through the generic system_call function. It just doesn't have compile time type checking.