syndrowm/syscalls
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
Little library to resolve syscall numbers and names
In [1]: import syscalls
In [2]: syscalls.linux('fork')
Out[2]: 2
In [3]: syscalls.linux(2)
Out[3]: 'fork'
Currently supports freebsd, linux, netbsd, openbsd and osx.