28 lines
661 B
Markdown
28 lines
661 B
Markdown
# Syscalls
|
|
|
|
## General
|
|
|
|
* [Syscalls in different OSs](http://asm.sourceforge.net/intro/hello.html)
|
|
|
|
## Linux Syscalls
|
|
|
|
* First point of contact is `/usr/include/asm/unistd_32.h` and `/usr/include/asm/unistd_64.h`
|
|
|
|
Manfiles are
|
|
```
|
|
2 syscall
|
|
2 syscalls
|
|
```
|
|
|
|
### 32-Bit
|
|
|
|
* [paolostivanin's syscall-table-32bit](https://github.com/paolostivanin/syscall-table-32bit.git) also contains the link to [the overview](https://syscalls32.paolostivanin.com/)
|
|
|
|
### 64-Bit
|
|
|
|
* [Filippo.io's x64 syscall table](https://filippo.io/linux-syscall-table/)
|
|
|
|
### Others As Well
|
|
|
|
* [googlesource.com](https://chromium.googlesource.com/chromiumos/docs/+/master/constants/syscalls.md)
|