diff options
author | Arturs Artamonovs <dos21h@gmail.com> | 2023-02-14 22:45:57 +0000 |
---|---|---|
committer | Arturs Artamonovs <dos21h@gmail.com> | 2023-02-14 22:45:57 +0000 |
commit | 83dac9bd6f12829941f8caf83d3b101aa2d50c64 (patch) | |
tree | a0ad717dda1bbcd91cd2f92eb564914d8215eaf2 /md | |
parent | 9561feb13b3a48e5a82d4904b1a62529b53c5948 (diff) | |
download | md-content-83dac9bd6f12829941f8caf83d3b101aa2d50c64.tar.gz md-content-83dac9bd6f12829941f8caf83d3b101aa2d50c64.zip |
fix syscall table
Diffstat (limited to 'md')
-rw-r--r-- | md/notes/syscalls.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/md/notes/syscalls.md b/md/notes/syscalls.md index 31529f8..81a2240 100644 --- a/md/notes/syscalls.md +++ b/md/notes/syscalls.md @@ -17,7 +17,7 @@ Linux x86_64 syscall table </script> | N | Syscall | Params | RAX | RDI | RSI | RDX | R10 | R8 | R9 | -|---|---|---|---|---|---|---|---|---|---|---| +|---|---|---|---|---|---|---|---|---|---| |0|sys_read|3|0x00|unsigned int fd|char *buf|size_t count|||| |1|sys_write|3|0x01|unsigned int fd|const char *buf|size_t count|||| |2|sys_open|3|0x02|const char *filename|int flags|int mode|||| @@ -381,4 +381,4 @@ line that should be syscall source code lines 3. [http://syscalls.kernelgrok.com](http://syscalls.kernelgrok.com/) 4. [http://man7.org](http://man7.org/linux/man-pages/man2/syscalls.2.html) 5. [https://filippo.io](https://filippo.io/linux-syscall-table/) -6. [https://fedora.juszkiewicz.com.pl/syscalls.html](https://fedora.juszkiewicz.com.pl/syscalls.html)
\ No newline at end of file +6. [https://fedora.juszkiewicz.com.pl/syscalls.html](https://fedora.juszkiewicz.com.pl/syscalls.html) |