---
breadcrumbs:
- - /chromium-os/developer-library/reference
  - ChromiumOS > Reference
page_name: syscalls
title: Linux System Call Table
---

These are the system call numbers (NR) and their corresponding symbolic names.

These vary significantly across architectures/ABIs, both in mappings and in
actual name.

This is a quick reference for people debugging things (e.g. seccomp failures).

For more details on syscalls in general, see the
[syscall(2)](https://man7.org/linux/man-pages/man2/syscall.2.html) man page.

[TOC]

## Random Names

Depending on the environment you're in, syscall names might use slightly
different naming conventions.

The kernel headers (e.g. `asm/unistd.h`) use names like `__NR_xxx`, but don't
provide any other utility code.
The C library headers (e.g. `syscall.h` & `sys/syscall.h`) use names like
`SYS_xxx` with the intention they be used with `syscall(...)`.
These defines will be exactly the same -- so `__NR_foo` will have the same
value as `SYS_foo`.

Which one a developer chooses to use is a bit arbitrary, and most likely belies
their background (with kernel developers tending towards `__NR_xxx`).
If you're writing userland C code and the `syscall(...)` function, you probably
should stick to `SYS_xxx` instead.

The short name "NR" itself just refers to "number".
You might see "syscall number" and "NR" and "syscall NR" used interchangeably.

Another fun difference is that some architectures namespace syscalls that are
specific to their port in some way.
Or they don't.
It's another situation of different kernel maintainers making different choices
and there not being a central authority who noticed & enforced things.
For example, ARM has a few `__ARM_NR_xxx` syscalls that they consider "private",
and they have a few `__NR_arm_xxx` syscalls to indicate that they have a custom
wrapper around the `xxx` syscall!

Another edge case to keep in mind is that different architectures might use the
same name for different entry points.
It's uncommon, but can come up when looking at syscalls with variants.
For example, an older architecture port might have `setuid` & `setuid32` while
newer ones only have `setuid`.
The older port's `setuid` takes a 16-bit argument while the newer port's
`setuid` takes a 32-bit argument and is equivalent to `setuid32`.
There are many parallels with filesystem calls like `statfs` & `statfs64`.

## Kernel Implementations

The cs/ links to kernel sources (used in the table below) are best effort.
They focus on the common C entry point, but depending on your execution
environment, that might not be the first place the kernel executes.

Every architecture may point a syscall from its initial entry point to custom
trampoline code.
For example, ARM's `fstatfs64` implementation starts execution in
`sys_fstatfs64_wrapper` which lives under `arch/arm/` as assembly code.
That in turn calls `sys_fstatfs64` which is C code in the common `fs/` tree.
Usually these trampolines are not complicated, but they might add an extra check
to overall execution.
If you're seeing confusing behavior related to the C code, you might want to
dive deeper.

When working with 32-bit ABIs on 64-bit kernels, you might run into the syscall
compat layers which try to swizzle structures.
This shows up a lot on x86 & ARM systems where the userland is 32-bit but the
kernel is 64-bit.
These will use conventions like `compat_sys_xxx` instead of `sys_xxx`, and
`COMPAT_SYSCALL_XXX` wrappers instead of `SYSCALL_XXX`.
They're responsible for taking the 32-bit structures from userland, converting
them to the 64-bit structures the kernel uses, then calling the 64-bit C code.
Normally this conversion is not a problem, but if the code detects issues with
the data structures, it'll error out before the common implementation of the
syscall is ever executed.

The Android/ARC++ container executes under the alt-syscall layer.
This allows defining of a custom syscall table for the purpose of hard disabling
any syscalls for all processes (without needing seccomp), or for adding extra
checks to the entry/exit points of the common implementation, or stubbing things
out regardless of any arguments.
All of this code will run before the common implementation of the syscall is
ever executed.
Since the tables are hand maintained in our kernel (and not upstream), new
syscalls aren't added to the list automatically, so you might see confusing
errors like `ENOSYS`, but only when run inside of the container.
If you're seeing misbehavior, you should check to see if alt-syscall is enabled
for the process, and if so, look at the wrappers under
[`security/chromiumos/`](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+f:security/chromiumos/alt-syscall).

## Syscall Availability

Unfortunately, having a syscall number defined at compile time is not a
guarantee that the syscall will exist at runtime.
In other words, you can still see `ENOSYS` when using it.
This can occur for many different reasons:

*   The syscall depends on a kernel config setting that is not enabled.
*   The program is running on a kernel that doesn't support the syscall.
*   The seccomp filter forces `ENOSYS` for the syscall (uncommon).
*   The alt-syscall layer does not have the syscall registered (uncommon).

While the kernel headers version is kept in sync with the oldest kernel version
that we currently support, we sometimes backport userland API (UAPI) header
changes so programs can rely on structures or defines existing without having to
copy fallbacks into every project.
We rarely however backport large new features in the kernel itself, especially
syscalls/subsystems that can be disruptive & risky.
The expectation is that programs using those APIs know they have to check at
runtime whether the functionality is available, and if not, gracefully fallback.

This can also help people writing seccomp filters with minijail so that they can
use the syscall constant even if the kernel doesn't support it -- the seccomp
filter only cares about the number when checking things.
We don't support different filters based on the device or kernel version.

## Calling Conventions

Here's a cheat sheet for the syscall calling convention for arches supported
by ChromeOS.
These are useful when looking at seccomp failures in minidumps.

This is only meant as a cheat sheet for people writing seccomp filters, or
similar low level tools.
It is *not* a complete reference for the entire calling convention for each
architecture as that can be extremely nuanced & complicated.
If you need that level of detail, you should start with the [syscall(2) notes],
and then check out the respective psABI (Processor Specific Application Binary
Interface) supplemental chapters.

[syscall(2) notes]: https://man7.org/linux/man-pages/man2/syscall.2.html#NOTES

> **Note**:
> The `arg0` names below match minijail's seccomp filter syntax.
> It's not uncommon for source code to count from 1 instead of 0, so be aware as
> you go spelunking into implementations.

| arch   | syscall NR | return | arg0 | arg1 | arg2 | arg3 | arg4 | arg5 |
|:------:|:----------:|:------:|:----:|:----:|:----:|:----:|:----:|:----:|
| arm    | r7         | r0     | r0   | r1   | r2   | r3   | r4   | r5   |
| arm64  | x8         | x0     | x0   | x1   | x2   | x3   | x4   | x5   |
| x86    | eax        | eax    | ebx  | ecx  | edx  | esi  | edi  | ebp  |
| x86_64 | rax        | rax    | rdi  | rsi  | rdx  | r10  | r8   | r9   |

<!--
Note: These tables are generated by the syscalls.py helper script.
Do not hand edit.
-->

[linux-headers]: https://chromium.googlesource.com/chromiumos/overlays/chromiumos-overlay/+/HEAD/sys-kernel/linux-headers/

## Tables

### x86_64 (64-bit)

Compiled from [Linux 5.4.0 headers][linux-headers].

| NR | syscall name | references | %rax | arg0 (%rdi) | arg1 (%rsi) | arg2 (%rdx) | arg3 (%r10) | arg4 (%r8) | arg5 (%r9) |
|:---:|---|:---:|:---:|---|---|---|---|---|---|
| <a name="x86_64_0"></a> [0](#x86_64_0) | read | [man/](https://man7.org/linux/man-pages/man2/read.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bread\b) | 0x00 | unsigned int fd | char \*buf | size\_t count | - | - | - |
| <a name="x86_64_1"></a> [1](#x86_64_1) | write | [man/](https://man7.org/linux/man-pages/man2/write.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwrite\b) | 0x01 | unsigned int fd | const char \*buf | size\_t count | - | - | - |
| <a name="x86_64_2"></a> [2](#x86_64_2) | open | [man/](https://man7.org/linux/man-pages/man2/open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen\b) | 0x02 | const char \*filename | int flags | umode\_t mode | - | - | - |
| <a name="x86_64_3"></a> [3](#x86_64_3) | close | [man/](https://man7.org/linux/man-pages/man2/close.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose\b) | 0x03 | unsigned int fd | - | - | - | - | - |
| <a name="x86_64_4"></a> [4](#x86_64_4) | stat | [man/](https://man7.org/linux/man-pages/man2/stat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstat\b) | 0x04 | const char \*filename | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="x86_64_5"></a> [5](#x86_64_5) | fstat | [man/](https://man7.org/linux/man-pages/man2/fstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstat\b) | 0x05 | unsigned int fd | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="x86_64_6"></a> [6](#x86_64_6) | lstat | [man/](https://man7.org/linux/man-pages/man2/lstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blstat\b) | 0x06 | const char \*filename | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="x86_64_7"></a> [7](#x86_64_7) | poll | [man/](https://man7.org/linux/man-pages/man2/poll.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpoll\b) | 0x07 | struct pollfd \*ufds | unsigned int nfds | int timeout | - | - | - |
| <a name="x86_64_8"></a> [8](#x86_64_8) | lseek | [man/](https://man7.org/linux/man-pages/man2/lseek.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blseek\b) | 0x08 | unsigned int fd | off\_t offset | unsigned int whence | - | - | - |
| <a name="x86_64_9"></a> [9](#x86_64_9) | mmap | [man/](https://man7.org/linux/man-pages/man2/mmap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmmap\b) | 0x09 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_10"></a> [10](#x86_64_10) | mprotect | [man/](https://man7.org/linux/man-pages/man2/mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmprotect\b) | 0x0a | unsigned long start | size\_t len | unsigned long prot | - | - | - |
| <a name="x86_64_11"></a> [11](#x86_64_11) | munmap | [man/](https://man7.org/linux/man-pages/man2/munmap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunmap\b) | 0x0b | unsigned long addr | size\_t len | - | - | - | - |
| <a name="x86_64_12"></a> [12](#x86_64_12) | brk | [man/](https://man7.org/linux/man-pages/man2/brk.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbrk\b) | 0x0c | unsigned long brk | - | - | - | - | - |
| <a name="x86_64_13"></a> [13](#x86_64_13) | rt_sigaction | [man/](https://man7.org/linux/man-pages/man2/rt_sigaction.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigaction\b) | 0x0d | int | const struct sigaction \* | struct sigaction \* | size\_t | - | - |
| <a name="x86_64_14"></a> [14](#x86_64_14) | rt_sigprocmask | [man/](https://man7.org/linux/man-pages/man2/rt_sigprocmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigprocmask\b) | 0x0e | int how | sigset\_t \*set | sigset\_t \*oset | size\_t sigsetsize | - | - |
| <a name="x86_64_15"></a> [15](#x86_64_15) | rt_sigreturn | [man/](https://man7.org/linux/man-pages/man2/rt_sigreturn.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigreturn\b) | 0x0f | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_16"></a> [16](#x86_64_16) | ioctl | [man/](https://man7.org/linux/man-pages/man2/ioctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioctl\b) | 0x10 | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="x86_64_17"></a> [17](#x86_64_17) | pread64 | [man/](https://man7.org/linux/man-pages/man2/pread64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpread64\b) | 0x11 | unsigned int fd | char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="x86_64_18"></a> [18](#x86_64_18) | pwrite64 | [man/](https://man7.org/linux/man-pages/man2/pwrite64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwrite64\b) | 0x12 | unsigned int fd | const char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="x86_64_19"></a> [19](#x86_64_19) | readv | [man/](https://man7.org/linux/man-pages/man2/readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadv\b) | 0x13 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="x86_64_20"></a> [20](#x86_64_20) | writev | [man/](https://man7.org/linux/man-pages/man2/writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwritev\b) | 0x14 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="x86_64_21"></a> [21](#x86_64_21) | access | [man/](https://man7.org/linux/man-pages/man2/access.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccess\b) | 0x15 | const char \*filename | int mode | - | - | - | - |
| <a name="x86_64_22"></a> [22](#x86_64_22) | pipe | [man/](https://man7.org/linux/man-pages/man2/pipe.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpipe\b) | 0x16 | int \*fildes | - | - | - | - | - |
| <a name="x86_64_23"></a> [23](#x86_64_23) | select | [man/](https://man7.org/linux/man-pages/man2/select.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bselect\b) | 0x17 | int n | fd\_set \*inp | fd\_set \*outp | fd\_set \*exp | struct \_\_kernel\_old\_timeval \*tvp | - |
| <a name="x86_64_24"></a> [24](#x86_64_24) | sched_yield | [man/](https://man7.org/linux/man-pages/man2/sched_yield.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_yield\b) | 0x18 | - | - | - | - | - | - |
| <a name="x86_64_25"></a> [25](#x86_64_25) | mremap | [man/](https://man7.org/linux/man-pages/man2/mremap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmremap\b) | 0x19 | unsigned long addr | unsigned long old\_len | unsigned long new\_len | unsigned long flags | unsigned long new\_addr | - |
| <a name="x86_64_26"></a> [26](#x86_64_26) | msync | [man/](https://man7.org/linux/man-pages/man2/msync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsync\b) | 0x1a | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="x86_64_27"></a> [27](#x86_64_27) | mincore | [man/](https://man7.org/linux/man-pages/man2/mincore.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmincore\b) | 0x1b | unsigned long start | size\_t len | unsigned char \* vec | - | - | - |
| <a name="x86_64_28"></a> [28](#x86_64_28) | madvise | [man/](https://man7.org/linux/man-pages/man2/madvise.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmadvise\b) | 0x1c | unsigned long start | size\_t len | int behavior | - | - | - |
| <a name="x86_64_29"></a> [29](#x86_64_29) | shmget | [man/](https://man7.org/linux/man-pages/man2/shmget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmget\b) | 0x1d | key\_t key | size\_t size | int flag | - | - | - |
| <a name="x86_64_30"></a> [30](#x86_64_30) | shmat | [man/](https://man7.org/linux/man-pages/man2/shmat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmat\b) | 0x1e | int shmid | char \*shmaddr | int shmflg | - | - | - |
| <a name="x86_64_31"></a> [31](#x86_64_31) | shmctl | [man/](https://man7.org/linux/man-pages/man2/shmctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmctl\b) | 0x1f | int shmid | int cmd | struct shmid\_ds \*buf | - | - | - |
| <a name="x86_64_32"></a> [32](#x86_64_32) | dup | [man/](https://man7.org/linux/man-pages/man2/dup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup\b) | 0x20 | unsigned int fildes | - | - | - | - | - |
| <a name="x86_64_33"></a> [33](#x86_64_33) | dup2 | [man/](https://man7.org/linux/man-pages/man2/dup2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup2\b) | 0x21 | unsigned int oldfd | unsigned int newfd | - | - | - | - |
| <a name="x86_64_34"></a> [34](#x86_64_34) | pause | [man/](https://man7.org/linux/man-pages/man2/pause.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpause\b) | 0x22 | - | - | - | - | - | - |
| <a name="x86_64_35"></a> [35](#x86_64_35) | nanosleep | [man/](https://man7.org/linux/man-pages/man2/nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnanosleep\b) | 0x23 | struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - | - | - |
| <a name="x86_64_36"></a> [36](#x86_64_36) | getitimer | [man/](https://man7.org/linux/man-pages/man2/getitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetitimer\b) | 0x24 | int which | struct \_\_kernel\_old\_itimerval \*value | - | - | - | - |
| <a name="x86_64_37"></a> [37](#x86_64_37) | alarm | [man/](https://man7.org/linux/man-pages/man2/alarm.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\balarm\b) | 0x25 | unsigned int seconds | - | - | - | - | - |
| <a name="x86_64_38"></a> [38](#x86_64_38) | setitimer | [man/](https://man7.org/linux/man-pages/man2/setitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetitimer\b) | 0x26 | int which | struct \_\_kernel\_old\_itimerval \*value | struct \_\_kernel\_old\_itimerval \*ovalue | - | - | - |
| <a name="x86_64_39"></a> [39](#x86_64_39) | getpid | [man/](https://man7.org/linux/man-pages/man2/getpid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpid\b) | 0x27 | - | - | - | - | - | - |
| <a name="x86_64_40"></a> [40](#x86_64_40) | sendfile | [man/](https://man7.org/linux/man-pages/man2/sendfile.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendfile\b) | 0x28 | int out\_fd | int in\_fd | off\_t \*offset | size\_t count | - | - |
| <a name="x86_64_41"></a> [41](#x86_64_41) | socket | [man/](https://man7.org/linux/man-pages/man2/socket.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocket\b) | 0x29 | int | int | int | - | - | - |
| <a name="x86_64_42"></a> [42](#x86_64_42) | connect | [man/](https://man7.org/linux/man-pages/man2/connect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bconnect\b) | 0x2a | int | struct sockaddr \* | int | - | - | - |
| <a name="x86_64_43"></a> [43](#x86_64_43) | accept | [man/](https://man7.org/linux/man-pages/man2/accept.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccept\b) | 0x2b | int | struct sockaddr \* | int \* | - | - | - |
| <a name="x86_64_44"></a> [44](#x86_64_44) | sendto | [man/](https://man7.org/linux/man-pages/man2/sendto.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendto\b) | 0x2c | int | void \* | size\_t | unsigned | struct sockaddr \* | int |
| <a name="x86_64_45"></a> [45](#x86_64_45) | recvfrom | [man/](https://man7.org/linux/man-pages/man2/recvfrom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvfrom\b) | 0x2d | int | void \* | size\_t | unsigned | struct sockaddr \* | int \* |
| <a name="x86_64_46"></a> [46](#x86_64_46) | sendmsg | [man/](https://man7.org/linux/man-pages/man2/sendmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmsg\b) | 0x2e | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="x86_64_47"></a> [47](#x86_64_47) | recvmsg | [man/](https://man7.org/linux/man-pages/man2/recvmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmsg\b) | 0x2f | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="x86_64_48"></a> [48](#x86_64_48) | shutdown | [man/](https://man7.org/linux/man-pages/man2/shutdown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshutdown\b) | 0x30 | int | int | - | - | - | - |
| <a name="x86_64_49"></a> [49](#x86_64_49) | bind | [man/](https://man7.org/linux/man-pages/man2/bind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbind\b) | 0x31 | int | struct sockaddr \* | int | - | - | - |
| <a name="x86_64_50"></a> [50](#x86_64_50) | listen | [man/](https://man7.org/linux/man-pages/man2/listen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blisten\b) | 0x32 | int | int | - | - | - | - |
| <a name="x86_64_51"></a> [51](#x86_64_51) | getsockname | [man/](https://man7.org/linux/man-pages/man2/getsockname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockname\b) | 0x33 | int | struct sockaddr \* | int \* | - | - | - |
| <a name="x86_64_52"></a> [52](#x86_64_52) | getpeername | [man/](https://man7.org/linux/man-pages/man2/getpeername.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpeername\b) | 0x34 | int | struct sockaddr \* | int \* | - | - | - |
| <a name="x86_64_53"></a> [53](#x86_64_53) | socketpair | [man/](https://man7.org/linux/man-pages/man2/socketpair.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocketpair\b) | 0x35 | int | int | int | int \* | - | - |
| <a name="x86_64_54"></a> [54](#x86_64_54) | setsockopt | [man/](https://man7.org/linux/man-pages/man2/setsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsockopt\b) | 0x36 | int fd | int level | int optname | char \*optval | int optlen | - |
| <a name="x86_64_55"></a> [55](#x86_64_55) | getsockopt | [man/](https://man7.org/linux/man-pages/man2/getsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockopt\b) | 0x37 | int fd | int level | int optname | char \*optval | int \*optlen | - |
| <a name="x86_64_56"></a> [56](#x86_64_56) | clone | [man/](https://man7.org/linux/man-pages/man2/clone.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone\b) | 0x38 | unsigned long | unsigned long | int \* | int \* | unsigned long | - |
| <a name="x86_64_57"></a> [57](#x86_64_57) | fork | [man/](https://man7.org/linux/man-pages/man2/fork.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfork\b) | 0x39 | - | - | - | - | - | - |
| <a name="x86_64_58"></a> [58](#x86_64_58) | vfork | [man/](https://man7.org/linux/man-pages/man2/vfork.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvfork\b) | 0x3a | - | - | - | - | - | - |
| <a name="x86_64_59"></a> [59](#x86_64_59) | execve | [man/](https://man7.org/linux/man-pages/man2/execve.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecve\b) | 0x3b | const char \*filename | const char \*const \*argv | const char \*const \*envp | - | - | - |
| <a name="x86_64_60"></a> [60](#x86_64_60) | exit | [man/](https://man7.org/linux/man-pages/man2/exit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit\b) | 0x3c | int error\_code | - | - | - | - | - |
| <a name="x86_64_61"></a> [61](#x86_64_61) | wait4 | [man/](https://man7.org/linux/man-pages/man2/wait4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwait4\b) | 0x3d | pid\_t pid | int \*stat\_addr | int options | struct rusage \*ru | - | - |
| <a name="x86_64_62"></a> [62](#x86_64_62) | kill | [man/](https://man7.org/linux/man-pages/man2/kill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkill\b) | 0x3e | pid\_t pid | int sig | - | - | - | - |
| <a name="x86_64_63"></a> [63](#x86_64_63) | uname | [man/](https://man7.org/linux/man-pages/man2/uname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buname\b) | 0x3f | struct old\_utsname \* | - | - | - | - | - |
| <a name="x86_64_64"></a> [64](#x86_64_64) | semget | [man/](https://man7.org/linux/man-pages/man2/semget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemget\b) | 0x40 | key\_t key | int nsems | int semflg | - | - | - |
| <a name="x86_64_65"></a> [65](#x86_64_65) | semop | [man/](https://man7.org/linux/man-pages/man2/semop.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemop\b) | 0x41 | int semid | struct sembuf \*sops | unsigned nsops | - | - | - |
| <a name="x86_64_66"></a> [66](#x86_64_66) | semctl | [man/](https://man7.org/linux/man-pages/man2/semctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemctl\b) | 0x42 | int semid | int semnum | int cmd | unsigned long arg | - | - |
| <a name="x86_64_67"></a> [67](#x86_64_67) | shmdt | [man/](https://man7.org/linux/man-pages/man2/shmdt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmdt\b) | 0x43 | char \*shmaddr | - | - | - | - | - |
| <a name="x86_64_68"></a> [68](#x86_64_68) | msgget | [man/](https://man7.org/linux/man-pages/man2/msgget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgget\b) | 0x44 | key\_t key | int msgflg | - | - | - | - |
| <a name="x86_64_69"></a> [69](#x86_64_69) | msgsnd | [man/](https://man7.org/linux/man-pages/man2/msgsnd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgsnd\b) | 0x45 | int msqid | struct msgbuf \*msgp | size\_t msgsz | int msgflg | - | - |
| <a name="x86_64_70"></a> [70](#x86_64_70) | msgrcv | [man/](https://man7.org/linux/man-pages/man2/msgrcv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgrcv\b) | 0x46 | int msqid | struct msgbuf \*msgp | size\_t msgsz | long msgtyp | int msgflg | - |
| <a name="x86_64_71"></a> [71](#x86_64_71) | msgctl | [man/](https://man7.org/linux/man-pages/man2/msgctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgctl\b) | 0x47 | int msqid | int cmd | struct msqid\_ds \*buf | - | - | - |
| <a name="x86_64_72"></a> [72](#x86_64_72) | fcntl | [man/](https://man7.org/linux/man-pages/man2/fcntl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfcntl\b) | 0x48 | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="x86_64_73"></a> [73](#x86_64_73) | flock | [man/](https://man7.org/linux/man-pages/man2/flock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflock\b) | 0x49 | unsigned int fd | unsigned int cmd | - | - | - | - |
| <a name="x86_64_74"></a> [74](#x86_64_74) | fsync | [man/](https://man7.org/linux/man-pages/man2/fsync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsync\b) | 0x4a | unsigned int fd | - | - | - | - | - |
| <a name="x86_64_75"></a> [75](#x86_64_75) | fdatasync | [man/](https://man7.org/linux/man-pages/man2/fdatasync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfdatasync\b) | 0x4b | unsigned int fd | - | - | - | - | - |
| <a name="x86_64_76"></a> [76](#x86_64_76) | truncate | [man/](https://man7.org/linux/man-pages/man2/truncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btruncate\b) | 0x4c | const char \*path | long length | - | - | - | - |
| <a name="x86_64_77"></a> [77](#x86_64_77) | ftruncate | [man/](https://man7.org/linux/man-pages/man2/ftruncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bftruncate\b) | 0x4d | unsigned int fd | off\_t length | - | - | - | - |
| <a name="x86_64_78"></a> [78](#x86_64_78) | getdents | [man/](https://man7.org/linux/man-pages/man2/getdents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetdents\b) | 0x4e | unsigned int fd | struct linux\_dirent \*dirent | unsigned int count | - | - | - |
| <a name="x86_64_79"></a> [79](#x86_64_79) | getcwd | [man/](https://man7.org/linux/man-pages/man2/getcwd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcwd\b) | 0x4f | char \*buf | unsigned long size | - | - | - | - |
| <a name="x86_64_80"></a> [80](#x86_64_80) | chdir | [man/](https://man7.org/linux/man-pages/man2/chdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchdir\b) | 0x50 | const char \*filename | - | - | - | - | - |
| <a name="x86_64_81"></a> [81](#x86_64_81) | fchdir | [man/](https://man7.org/linux/man-pages/man2/fchdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchdir\b) | 0x51 | unsigned int fd | - | - | - | - | - |
| <a name="x86_64_82"></a> [82](#x86_64_82) | rename | [man/](https://man7.org/linux/man-pages/man2/rename.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brename\b) | 0x52 | const char \*oldname | const char \*newname | - | - | - | - |
| <a name="x86_64_83"></a> [83](#x86_64_83) | mkdir | [man/](https://man7.org/linux/man-pages/man2/mkdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmkdir\b) | 0x53 | const char \*pathname | umode\_t mode | - | - | - | - |
| <a name="x86_64_84"></a> [84](#x86_64_84) | rmdir | [man/](https://man7.org/linux/man-pages/man2/rmdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brmdir\b) | 0x54 | const char \*pathname | - | - | - | - | - |
| <a name="x86_64_85"></a> [85](#x86_64_85) | creat | [man/](https://man7.org/linux/man-pages/man2/creat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcreat\b) | 0x55 | const char \*pathname | umode\_t mode | - | - | - | - |
| <a name="x86_64_86"></a> [86](#x86_64_86) | link | [man/](https://man7.org/linux/man-pages/man2/link.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blink\b) | 0x56 | const char \*oldname | const char \*newname | - | - | - | - |
| <a name="x86_64_87"></a> [87](#x86_64_87) | unlink | [man/](https://man7.org/linux/man-pages/man2/unlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunlink\b) | 0x57 | const char \*pathname | - | - | - | - | - |
| <a name="x86_64_88"></a> [88](#x86_64_88) | symlink | [man/](https://man7.org/linux/man-pages/man2/symlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsymlink\b) | 0x58 | const char \*old | const char \*new | - | - | - | - |
| <a name="x86_64_89"></a> [89](#x86_64_89) | readlink | [man/](https://man7.org/linux/man-pages/man2/readlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadlink\b) | 0x59 | const char \*path | char \*buf | int bufsiz | - | - | - |
| <a name="x86_64_90"></a> [90](#x86_64_90) | chmod | [man/](https://man7.org/linux/man-pages/man2/chmod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchmod\b) | 0x5a | const char \*filename | umode\_t mode | - | - | - | - |
| <a name="x86_64_91"></a> [91](#x86_64_91) | fchmod | [man/](https://man7.org/linux/man-pages/man2/fchmod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmod\b) | 0x5b | unsigned int fd | umode\_t mode | - | - | - | - |
| <a name="x86_64_92"></a> [92](#x86_64_92) | chown | [man/](https://man7.org/linux/man-pages/man2/chown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchown\b) | 0x5c | const char \*filename | uid\_t user | gid\_t group | - | - | - |
| <a name="x86_64_93"></a> [93](#x86_64_93) | fchown | [man/](https://man7.org/linux/man-pages/man2/fchown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchown\b) | 0x5d | unsigned int fd | uid\_t user | gid\_t group | - | - | - |
| <a name="x86_64_94"></a> [94](#x86_64_94) | lchown | [man/](https://man7.org/linux/man-pages/man2/lchown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blchown\b) | 0x5e | const char \*filename | uid\_t user | gid\_t group | - | - | - |
| <a name="x86_64_95"></a> [95](#x86_64_95) | umask | [man/](https://man7.org/linux/man-pages/man2/umask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumask\b) | 0x5f | int mask | - | - | - | - | - |
| <a name="x86_64_96"></a> [96](#x86_64_96) | gettimeofday | [man/](https://man7.org/linux/man-pages/man2/gettimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettimeofday\b) | 0x60 | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="x86_64_97"></a> [97](#x86_64_97) | getrlimit | [man/](https://man7.org/linux/man-pages/man2/getrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrlimit\b) | 0x61 | unsigned int resource | struct rlimit \*rlim | - | - | - | - |
| <a name="x86_64_98"></a> [98](#x86_64_98) | getrusage | [man/](https://man7.org/linux/man-pages/man2/getrusage.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrusage\b) | 0x62 | int who | struct rusage \*ru | - | - | - | - |
| <a name="x86_64_99"></a> [99](#x86_64_99) | sysinfo | [man/](https://man7.org/linux/man-pages/man2/sysinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsysinfo\b) | 0x63 | struct sysinfo \*info | - | - | - | - | - |
| <a name="x86_64_100"></a> [100](#x86_64_100) | times | [man/](https://man7.org/linux/man-pages/man2/times.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimes\b) | 0x64 | struct tms \*tbuf | - | - | - | - | - |
| <a name="x86_64_101"></a> [101](#x86_64_101) | ptrace | [man/](https://man7.org/linux/man-pages/man2/ptrace.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bptrace\b) | 0x65 | long request | long pid | unsigned long addr | unsigned long data | - | - |
| <a name="x86_64_102"></a> [102](#x86_64_102) | getuid | [man/](https://man7.org/linux/man-pages/man2/getuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetuid\b) | 0x66 | - | - | - | - | - | - |
| <a name="x86_64_103"></a> [103](#x86_64_103) | syslog | [man/](https://man7.org/linux/man-pages/man2/syslog.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyslog\b) | 0x67 | int type | char \*buf | int len | - | - | - |
| <a name="x86_64_104"></a> [104](#x86_64_104) | getgid | [man/](https://man7.org/linux/man-pages/man2/getgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgid\b) | 0x68 | - | - | - | - | - | - |
| <a name="x86_64_105"></a> [105](#x86_64_105) | setuid | [man/](https://man7.org/linux/man-pages/man2/setuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetuid\b) | 0x69 | uid\_t uid | - | - | - | - | - |
| <a name="x86_64_106"></a> [106](#x86_64_106) | setgid | [man/](https://man7.org/linux/man-pages/man2/setgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgid\b) | 0x6a | gid\_t gid | - | - | - | - | - |
| <a name="x86_64_107"></a> [107](#x86_64_107) | geteuid | [man/](https://man7.org/linux/man-pages/man2/geteuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgeteuid\b) | 0x6b | - | - | - | - | - | - |
| <a name="x86_64_108"></a> [108](#x86_64_108) | getegid | [man/](https://man7.org/linux/man-pages/man2/getegid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetegid\b) | 0x6c | - | - | - | - | - | - |
| <a name="x86_64_109"></a> [109](#x86_64_109) | setpgid | [man/](https://man7.org/linux/man-pages/man2/setpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpgid\b) | 0x6d | pid\_t pid | pid\_t pgid | - | - | - | - |
| <a name="x86_64_110"></a> [110](#x86_64_110) | getppid | [man/](https://man7.org/linux/man-pages/man2/getppid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetppid\b) | 0x6e | - | - | - | - | - | - |
| <a name="x86_64_111"></a> [111](#x86_64_111) | getpgrp | [man/](https://man7.org/linux/man-pages/man2/getpgrp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpgrp\b) | 0x6f | - | - | - | - | - | - |
| <a name="x86_64_112"></a> [112](#x86_64_112) | setsid | [man/](https://man7.org/linux/man-pages/man2/setsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsid\b) | 0x70 | - | - | - | - | - | - |
| <a name="x86_64_113"></a> [113](#x86_64_113) | setreuid | [man/](https://man7.org/linux/man-pages/man2/setreuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetreuid\b) | 0x71 | uid\_t ruid | uid\_t euid | - | - | - | - |
| <a name="x86_64_114"></a> [114](#x86_64_114) | setregid | [man/](https://man7.org/linux/man-pages/man2/setregid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetregid\b) | 0x72 | gid\_t rgid | gid\_t egid | - | - | - | - |
| <a name="x86_64_115"></a> [115](#x86_64_115) | getgroups | [man/](https://man7.org/linux/man-pages/man2/getgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgroups\b) | 0x73 | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="x86_64_116"></a> [116](#x86_64_116) | setgroups | [man/](https://man7.org/linux/man-pages/man2/setgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgroups\b) | 0x74 | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="x86_64_117"></a> [117](#x86_64_117) | setresuid | [man/](https://man7.org/linux/man-pages/man2/setresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresuid\b) | 0x75 | uid\_t ruid | uid\_t euid | uid\_t suid | - | - | - |
| <a name="x86_64_118"></a> [118](#x86_64_118) | getresuid | [man/](https://man7.org/linux/man-pages/man2/getresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresuid\b) | 0x76 | uid\_t \*ruid | uid\_t \*euid | uid\_t \*suid | - | - | - |
| <a name="x86_64_119"></a> [119](#x86_64_119) | setresgid | [man/](https://man7.org/linux/man-pages/man2/setresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresgid\b) | 0x77 | gid\_t rgid | gid\_t egid | gid\_t sgid | - | - | - |
| <a name="x86_64_120"></a> [120](#x86_64_120) | getresgid | [man/](https://man7.org/linux/man-pages/man2/getresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresgid\b) | 0x78 | gid\_t \*rgid | gid\_t \*egid | gid\_t \*sgid | - | - | - |
| <a name="x86_64_121"></a> [121](#x86_64_121) | getpgid | [man/](https://man7.org/linux/man-pages/man2/getpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpgid\b) | 0x79 | pid\_t pid | - | - | - | - | - |
| <a name="x86_64_122"></a> [122](#x86_64_122) | setfsuid | [man/](https://man7.org/linux/man-pages/man2/setfsuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsuid\b) | 0x7a | uid\_t uid | - | - | - | - | - |
| <a name="x86_64_123"></a> [123](#x86_64_123) | setfsgid | [man/](https://man7.org/linux/man-pages/man2/setfsgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsgid\b) | 0x7b | gid\_t gid | - | - | - | - | - |
| <a name="x86_64_124"></a> [124](#x86_64_124) | getsid | [man/](https://man7.org/linux/man-pages/man2/getsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsid\b) | 0x7c | pid\_t pid | - | - | - | - | - |
| <a name="x86_64_125"></a> [125](#x86_64_125) | capget | [man/](https://man7.org/linux/man-pages/man2/capget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapget\b) | 0x7d | cap\_user\_header\_t header | cap\_user\_data\_t dataptr | - | - | - | - |
| <a name="x86_64_126"></a> [126](#x86_64_126) | capset | [man/](https://man7.org/linux/man-pages/man2/capset.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapset\b) | 0x7e | cap\_user\_header\_t header | const cap\_user\_data\_t data | - | - | - | - |
| <a name="x86_64_127"></a> [127](#x86_64_127) | rt_sigpending | [man/](https://man7.org/linux/man-pages/man2/rt_sigpending.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigpending\b) | 0x7f | sigset\_t \*set | size\_t sigsetsize | - | - | - | - |
| <a name="x86_64_128"></a> [128](#x86_64_128) | rt_sigtimedwait | [man/](https://man7.org/linux/man-pages/man2/rt_sigtimedwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigtimedwait\b) | 0x80 | const sigset\_t \*uthese | siginfo\_t \*uinfo | const struct \_\_kernel\_timespec \*uts | size\_t sigsetsize | - | - |
| <a name="x86_64_129"></a> [129](#x86_64_129) | rt_sigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_sigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigqueueinfo\b) | 0x81 | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - | - |
| <a name="x86_64_130"></a> [130](#x86_64_130) | rt_sigsuspend | [man/](https://man7.org/linux/man-pages/man2/rt_sigsuspend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigsuspend\b) | 0x82 | sigset\_t \*unewset | size\_t sigsetsize | - | - | - | - |
| <a name="x86_64_131"></a> [131](#x86_64_131) | sigaltstack | [man/](https://man7.org/linux/man-pages/man2/sigaltstack.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigaltstack\b) | 0x83 | const struct sigaltstack \*uss | struct sigaltstack \*uoss | - | - | - | - |
| <a name="x86_64_132"></a> [132](#x86_64_132) | utime | [man/](https://man7.org/linux/man-pages/man2/utime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butime\b) | 0x84 | char \*filename | struct utimbuf \*times | - | - | - | - |
| <a name="x86_64_133"></a> [133](#x86_64_133) | mknod | [man/](https://man7.org/linux/man-pages/man2/mknod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmknod\b) | 0x85 | const char \*filename | umode\_t mode | unsigned dev | - | - | - |
| <a name="x86_64_134"></a> [134](#x86_64_134) | uselib | [man/](https://man7.org/linux/man-pages/man2/uselib.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buselib\b) | 0x86 | const char \*library | - | - | - | - | - |
| <a name="x86_64_135"></a> [135](#x86_64_135) | personality | [man/](https://man7.org/linux/man-pages/man2/personality.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpersonality\b) | 0x87 | unsigned int personality | - | - | - | - | - |
| <a name="x86_64_136"></a> [136](#x86_64_136) | ustat | [man/](https://man7.org/linux/man-pages/man2/ustat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bustat\b) | 0x88 | unsigned dev | struct ustat \*ubuf | - | - | - | - |
| <a name="x86_64_137"></a> [137](#x86_64_137) | statfs | [man/](https://man7.org/linux/man-pages/man2/statfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatfs\b) | 0x89 | const char \* path | struct statfs \*buf | - | - | - | - |
| <a name="x86_64_138"></a> [138](#x86_64_138) | fstatfs | [man/](https://man7.org/linux/man-pages/man2/fstatfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatfs\b) | 0x8a | unsigned int fd | struct statfs \*buf | - | - | - | - |
| <a name="x86_64_139"></a> [139](#x86_64_139) | sysfs | [man/](https://man7.org/linux/man-pages/man2/sysfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsysfs\b) | 0x8b | int option | unsigned long arg1 | unsigned long arg2 | - | - | - |
| <a name="x86_64_140"></a> [140](#x86_64_140) | getpriority | [man/](https://man7.org/linux/man-pages/man2/getpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpriority\b) | 0x8c | int which | int who | - | - | - | - |
| <a name="x86_64_141"></a> [141](#x86_64_141) | setpriority | [man/](https://man7.org/linux/man-pages/man2/setpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpriority\b) | 0x8d | int which | int who | int niceval | - | - | - |
| <a name="x86_64_142"></a> [142](#x86_64_142) | sched_setparam | [man/](https://man7.org/linux/man-pages/man2/sched_setparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setparam\b) | 0x8e | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="x86_64_143"></a> [143](#x86_64_143) | sched_getparam | [man/](https://man7.org/linux/man-pages/man2/sched_getparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getparam\b) | 0x8f | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="x86_64_144"></a> [144](#x86_64_144) | sched_setscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setscheduler\b) | 0x90 | pid\_t pid | int policy | struct sched\_param \*param | - | - | - |
| <a name="x86_64_145"></a> [145](#x86_64_145) | sched_getscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_getscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getscheduler\b) | 0x91 | pid\_t pid | - | - | - | - | - |
| <a name="x86_64_146"></a> [146](#x86_64_146) | sched_get_priority_max | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_max.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_max\b) | 0x92 | int policy | - | - | - | - | - |
| <a name="x86_64_147"></a> [147](#x86_64_147) | sched_get_priority_min | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_min.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_min\b) | 0x93 | int policy | - | - | - | - | - |
| <a name="x86_64_148"></a> [148](#x86_64_148) | sched_rr_get_interval | [man/](https://man7.org/linux/man-pages/man2/sched_rr_get_interval.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_rr_get_interval\b) | 0x94 | pid\_t pid | struct \_\_kernel\_timespec \*interval | - | - | - | - |
| <a name="x86_64_149"></a> [149](#x86_64_149) | mlock | [man/](https://man7.org/linux/man-pages/man2/mlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock\b) | 0x95 | unsigned long start | size\_t len | - | - | - | - |
| <a name="x86_64_150"></a> [150](#x86_64_150) | munlock | [man/](https://man7.org/linux/man-pages/man2/munlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlock\b) | 0x96 | unsigned long start | size\_t len | - | - | - | - |
| <a name="x86_64_151"></a> [151](#x86_64_151) | mlockall | [man/](https://man7.org/linux/man-pages/man2/mlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlockall\b) | 0x97 | int flags | - | - | - | - | - |
| <a name="x86_64_152"></a> [152](#x86_64_152) | munlockall | [man/](https://man7.org/linux/man-pages/man2/munlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlockall\b) | 0x98 | - | - | - | - | - | - |
| <a name="x86_64_153"></a> [153](#x86_64_153) | vhangup | [man/](https://man7.org/linux/man-pages/man2/vhangup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvhangup\b) | 0x99 | - | - | - | - | - | - |
| <a name="x86_64_154"></a> [154](#x86_64_154) | modify_ldt | [man/](https://man7.org/linux/man-pages/man2/modify_ldt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmodify_ldt\b) | 0x9a | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_155"></a> [155](#x86_64_155) | pivot_root | [man/](https://man7.org/linux/man-pages/man2/pivot_root.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpivot_root\b) | 0x9b | const char \*new\_root | const char \*put\_old | - | - | - | - |
| <a name="x86_64_156"></a> [156](#x86_64_156) | _sysctl | [man/](https://man7.org/linux/man-pages/man2/_sysctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\b_sysctl\b) | 0x9c | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_157"></a> [157](#x86_64_157) | prctl | [man/](https://man7.org/linux/man-pages/man2/prctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprctl\b) | 0x9d | int option | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="x86_64_158"></a> [158](#x86_64_158) | arch_prctl | [man/](https://man7.org/linux/man-pages/man2/arch_prctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\barch_prctl\b) | 0x9e | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_159"></a> [159](#x86_64_159) | adjtimex | [man/](https://man7.org/linux/man-pages/man2/adjtimex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badjtimex\b) | 0x9f | struct \_\_kernel\_timex \*txc\_p | - | - | - | - | - |
| <a name="x86_64_160"></a> [160](#x86_64_160) | setrlimit | [man/](https://man7.org/linux/man-pages/man2/setrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetrlimit\b) | 0xa0 | unsigned int resource | struct rlimit \*rlim | - | - | - | - |
| <a name="x86_64_161"></a> [161](#x86_64_161) | chroot | [man/](https://man7.org/linux/man-pages/man2/chroot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchroot\b) | 0xa1 | const char \*filename | - | - | - | - | - |
| <a name="x86_64_162"></a> [162](#x86_64_162) | sync | [man/](https://man7.org/linux/man-pages/man2/sync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync\b) | 0xa2 | - | - | - | - | - | - |
| <a name="x86_64_163"></a> [163](#x86_64_163) | acct | [man/](https://man7.org/linux/man-pages/man2/acct.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bacct\b) | 0xa3 | const char \*name | - | - | - | - | - |
| <a name="x86_64_164"></a> [164](#x86_64_164) | settimeofday | [man/](https://man7.org/linux/man-pages/man2/settimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsettimeofday\b) | 0xa4 | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="x86_64_165"></a> [165](#x86_64_165) | mount | [man/](https://man7.org/linux/man-pages/man2/mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmount\b) | 0xa5 | char \*dev\_name | char \*dir\_name | char \*type | unsigned long flags | void \*data | - |
| <a name="x86_64_166"></a> [166](#x86_64_166) | umount2 | [man/](https://man7.org/linux/man-pages/man2/umount2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumount2\b) | 0xa6 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_167"></a> [167](#x86_64_167) | swapon | [man/](https://man7.org/linux/man-pages/man2/swapon.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapon\b) | 0xa7 | const char \*specialfile | int swap\_flags | - | - | - | - |
| <a name="x86_64_168"></a> [168](#x86_64_168) | swapoff | [man/](https://man7.org/linux/man-pages/man2/swapoff.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapoff\b) | 0xa8 | const char \*specialfile | - | - | - | - | - |
| <a name="x86_64_169"></a> [169](#x86_64_169) | reboot | [man/](https://man7.org/linux/man-pages/man2/reboot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breboot\b) | 0xa9 | int magic1 | int magic2 | unsigned int cmd | void \*arg | - | - |
| <a name="x86_64_170"></a> [170](#x86_64_170) | sethostname | [man/](https://man7.org/linux/man-pages/man2/sethostname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsethostname\b) | 0xaa | char \*name | int len | - | - | - | - |
| <a name="x86_64_171"></a> [171](#x86_64_171) | setdomainname | [man/](https://man7.org/linux/man-pages/man2/setdomainname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetdomainname\b) | 0xab | char \*name | int len | - | - | - | - |
| <a name="x86_64_172"></a> [172](#x86_64_172) | iopl | [man/](https://man7.org/linux/man-pages/man2/iopl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\biopl\b) | 0xac | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_173"></a> [173](#x86_64_173) | ioperm | [man/](https://man7.org/linux/man-pages/man2/ioperm.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioperm\b) | 0xad | unsigned long from | unsigned long num | int on | - | - | - |
| <a name="x86_64_174"></a> [174](#x86_64_174) | create_module | [man/](https://man7.org/linux/man-pages/man2/create_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcreate_module\b) | 0xae | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_175"></a> [175](#x86_64_175) | init_module | [man/](https://man7.org/linux/man-pages/man2/init_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binit_module\b) | 0xaf | void \*umod | unsigned long len | const char \*uargs | - | - | - |
| <a name="x86_64_176"></a> [176](#x86_64_176) | delete_module | [man/](https://man7.org/linux/man-pages/man2/delete_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdelete_module\b) | 0xb0 | const char \*name\_user | unsigned int flags | - | - | - | - |
| <a name="x86_64_177"></a> [177](#x86_64_177) | get_kernel_syms | [man/](https://man7.org/linux/man-pages/man2/get_kernel_syms.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_kernel_syms\b) | 0xb1 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_178"></a> [178](#x86_64_178) | query_module | [man/](https://man7.org/linux/man-pages/man2/query_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bquery_module\b) | 0xb2 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_179"></a> [179](#x86_64_179) | quotactl | [man/](https://man7.org/linux/man-pages/man2/quotactl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bquotactl\b) | 0xb3 | unsigned int cmd | const char \*special | qid\_t id | void \*addr | - | - |
| <a name="x86_64_180"></a> [180](#x86_64_180) | nfsservctl | [man/](https://man7.org/linux/man-pages/man2/nfsservctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnfsservctl\b) | 0xb4 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_181"></a> [181](#x86_64_181) | getpmsg | [man/](https://man7.org/linux/man-pages/man2/getpmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpmsg\b) | 0xb5 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_182"></a> [182](#x86_64_182) | putpmsg | [man/](https://man7.org/linux/man-pages/man2/putpmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bputpmsg\b) | 0xb6 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_183"></a> [183](#x86_64_183) | afs_syscall | [man/](https://man7.org/linux/man-pages/man2/afs_syscall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bafs_syscall\b) | 0xb7 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_184"></a> [184](#x86_64_184) | tuxcall | [man/](https://man7.org/linux/man-pages/man2/tuxcall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btuxcall\b) | 0xb8 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_185"></a> [185](#x86_64_185) | security | [man/](https://man7.org/linux/man-pages/man2/security.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsecurity\b) | 0xb9 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_186"></a> [186](#x86_64_186) | gettid | [man/](https://man7.org/linux/man-pages/man2/gettid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettid\b) | 0xba | - | - | - | - | - | - |
| <a name="x86_64_187"></a> [187](#x86_64_187) | readahead | [man/](https://man7.org/linux/man-pages/man2/readahead.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadahead\b) | 0xbb | int fd | loff\_t offset | size\_t count | - | - | - |
| <a name="x86_64_188"></a> [188](#x86_64_188) | setxattr | [man/](https://man7.org/linux/man-pages/man2/setxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetxattr\b) | 0xbc | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="x86_64_189"></a> [189](#x86_64_189) | lsetxattr | [man/](https://man7.org/linux/man-pages/man2/lsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blsetxattr\b) | 0xbd | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="x86_64_190"></a> [190](#x86_64_190) | fsetxattr | [man/](https://man7.org/linux/man-pages/man2/fsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsetxattr\b) | 0xbe | int fd | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="x86_64_191"></a> [191](#x86_64_191) | getxattr | [man/](https://man7.org/linux/man-pages/man2/getxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetxattr\b) | 0xbf | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="x86_64_192"></a> [192](#x86_64_192) | lgetxattr | [man/](https://man7.org/linux/man-pages/man2/lgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blgetxattr\b) | 0xc0 | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="x86_64_193"></a> [193](#x86_64_193) | fgetxattr | [man/](https://man7.org/linux/man-pages/man2/fgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfgetxattr\b) | 0xc1 | int fd | const char \*name | void \*value | size\_t size | - | - |
| <a name="x86_64_194"></a> [194](#x86_64_194) | listxattr | [man/](https://man7.org/linux/man-pages/man2/listxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blistxattr\b) | 0xc2 | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="x86_64_195"></a> [195](#x86_64_195) | llistxattr | [man/](https://man7.org/linux/man-pages/man2/llistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bllistxattr\b) | 0xc3 | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="x86_64_196"></a> [196](#x86_64_196) | flistxattr | [man/](https://man7.org/linux/man-pages/man2/flistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflistxattr\b) | 0xc4 | int fd | char \*list | size\_t size | - | - | - |
| <a name="x86_64_197"></a> [197](#x86_64_197) | removexattr | [man/](https://man7.org/linux/man-pages/man2/removexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremovexattr\b) | 0xc5 | const char \*path | const char \*name | - | - | - | - |
| <a name="x86_64_198"></a> [198](#x86_64_198) | lremovexattr | [man/](https://man7.org/linux/man-pages/man2/lremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blremovexattr\b) | 0xc6 | const char \*path | const char \*name | - | - | - | - |
| <a name="x86_64_199"></a> [199](#x86_64_199) | fremovexattr | [man/](https://man7.org/linux/man-pages/man2/fremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfremovexattr\b) | 0xc7 | int fd | const char \*name | - | - | - | - |
| <a name="x86_64_200"></a> [200](#x86_64_200) | tkill | [man/](https://man7.org/linux/man-pages/man2/tkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btkill\b) | 0xc8 | pid\_t pid | int sig | - | - | - | - |
| <a name="x86_64_201"></a> [201](#x86_64_201) | time | [man/](https://man7.org/linux/man-pages/man2/time.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btime\b) | 0xc9 | \_\_kernel\_old\_time\_t \*tloc | - | - | - | - | - |
| <a name="x86_64_202"></a> [202](#x86_64_202) | futex | [man/](https://man7.org/linux/man-pages/man2/futex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutex\b) | 0xca | u32 \*uaddr | int op | u32 val | const struct \_\_kernel\_timespec \*utime | u32 \*uaddr2 | u32 val3 |
| <a name="x86_64_203"></a> [203](#x86_64_203) | sched_setaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_setaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setaffinity\b) | 0xcb | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="x86_64_204"></a> [204](#x86_64_204) | sched_getaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_getaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getaffinity\b) | 0xcc | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="x86_64_205"></a> [205](#x86_64_205) | set_thread_area | [man/](https://man7.org/linux/man-pages/man2/set_thread_area.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_thread_area\b) | 0xcd | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_206"></a> [206](#x86_64_206) | io_setup | [man/](https://man7.org/linux/man-pages/man2/io_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_setup\b) | 0xce | unsigned nr\_reqs | aio\_context\_t \*ctx | - | - | - | - |
| <a name="x86_64_207"></a> [207](#x86_64_207) | io_destroy | [man/](https://man7.org/linux/man-pages/man2/io_destroy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_destroy\b) | 0xcf | aio\_context\_t ctx | - | - | - | - | - |
| <a name="x86_64_208"></a> [208](#x86_64_208) | io_getevents | [man/](https://man7.org/linux/man-pages/man2/io_getevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_getevents\b) | 0xd0 | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | - |
| <a name="x86_64_209"></a> [209](#x86_64_209) | io_submit | [man/](https://man7.org/linux/man-pages/man2/io_submit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_submit\b) | 0xd1 | aio\_context\_t | long | struct iocb \* \* | - | - | - |
| <a name="x86_64_210"></a> [210](#x86_64_210) | io_cancel | [man/](https://man7.org/linux/man-pages/man2/io_cancel.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_cancel\b) | 0xd2 | aio\_context\_t ctx\_id | struct iocb \*iocb | struct io\_event \*result | - | - | - |
| <a name="x86_64_211"></a> [211](#x86_64_211) | get_thread_area | [man/](https://man7.org/linux/man-pages/man2/get_thread_area.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_thread_area\b) | 0xd3 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_212"></a> [212](#x86_64_212) | lookup_dcookie | [man/](https://man7.org/linux/man-pages/man2/lookup_dcookie.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blookup_dcookie\b) | 0xd4 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_213"></a> [213](#x86_64_213) | epoll_create | [man/](https://man7.org/linux/man-pages/man2/epoll_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_create\b) | 0xd5 | int size | - | - | - | - | - |
| <a name="x86_64_214"></a> [214](#x86_64_214) | epoll_ctl_old | [man/](https://man7.org/linux/man-pages/man2/epoll_ctl_old.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_ctl_old\b) | 0xd6 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_215"></a> [215](#x86_64_215) | epoll_wait_old | [man/](https://man7.org/linux/man-pages/man2/epoll_wait_old.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_wait_old\b) | 0xd7 | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_216"></a> [216](#x86_64_216) | remap_file_pages | [man/](https://man7.org/linux/man-pages/man2/remap_file_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremap_file_pages\b) | 0xd8 | unsigned long start | unsigned long size | unsigned long prot | unsigned long pgoff | unsigned long flags | - |
| <a name="x86_64_217"></a> [217](#x86_64_217) | getdents64 | [man/](https://man7.org/linux/man-pages/man2/getdents64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetdents64\b) | 0xd9 | unsigned int fd | struct linux\_dirent64 \*dirent | unsigned int count | - | - | - |
| <a name="x86_64_218"></a> [218](#x86_64_218) | set_tid_address | [man/](https://man7.org/linux/man-pages/man2/set_tid_address.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_tid_address\b) | 0xda | int \*tidptr | - | - | - | - | - |
| <a name="x86_64_219"></a> [219](#x86_64_219) | restart_syscall | [man/](https://man7.org/linux/man-pages/man2/restart_syscall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brestart_syscall\b) | 0xdb | - | - | - | - | - | - |
| <a name="x86_64_220"></a> [220](#x86_64_220) | semtimedop | [man/](https://man7.org/linux/man-pages/man2/semtimedop.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemtimedop\b) | 0xdc | int semid | struct sembuf \*sops | unsigned nsops | const struct \_\_kernel\_timespec \*timeout | - | - |
| <a name="x86_64_221"></a> [221](#x86_64_221) | fadvise64 | [man/](https://man7.org/linux/man-pages/man2/fadvise64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfadvise64\b) | 0xdd | int fd | loff\_t offset | size\_t len | int advice | - | - |
| <a name="x86_64_222"></a> [222](#x86_64_222) | timer_create | [man/](https://man7.org/linux/man-pages/man2/timer_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_create\b) | 0xde | clockid\_t which\_clock | struct sigevent \*timer\_event\_spec | timer\_t \* created\_timer\_id | - | - | - |
| <a name="x86_64_223"></a> [223](#x86_64_223) | timer_settime | [man/](https://man7.org/linux/man-pages/man2/timer_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_settime\b) | 0xdf | timer\_t timer\_id | int flags | const struct \_\_kernel\_itimerspec \*new\_setting | struct \_\_kernel\_itimerspec \*old\_setting | - | - |
| <a name="x86_64_224"></a> [224](#x86_64_224) | timer_gettime | [man/](https://man7.org/linux/man-pages/man2/timer_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_gettime\b) | 0xe0 | timer\_t timer\_id | struct \_\_kernel\_itimerspec \*setting | - | - | - | - |
| <a name="x86_64_225"></a> [225](#x86_64_225) | timer_getoverrun | [man/](https://man7.org/linux/man-pages/man2/timer_getoverrun.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_getoverrun\b) | 0xe1 | timer\_t timer\_id | - | - | - | - | - |
| <a name="x86_64_226"></a> [226](#x86_64_226) | timer_delete | [man/](https://man7.org/linux/man-pages/man2/timer_delete.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_delete\b) | 0xe2 | timer\_t timer\_id | - | - | - | - | - |
| <a name="x86_64_227"></a> [227](#x86_64_227) | clock_settime | [man/](https://man7.org/linux/man-pages/man2/clock_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_settime\b) | 0xe3 | clockid\_t which\_clock | const struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="x86_64_228"></a> [228](#x86_64_228) | clock_gettime | [man/](https://man7.org/linux/man-pages/man2/clock_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_gettime\b) | 0xe4 | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="x86_64_229"></a> [229](#x86_64_229) | clock_getres | [man/](https://man7.org/linux/man-pages/man2/clock_getres.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_getres\b) | 0xe5 | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="x86_64_230"></a> [230](#x86_64_230) | clock_nanosleep | [man/](https://man7.org/linux/man-pages/man2/clock_nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_nanosleep\b) | 0xe6 | clockid\_t which\_clock | int flags | const struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - |
| <a name="x86_64_231"></a> [231](#x86_64_231) | exit_group | [man/](https://man7.org/linux/man-pages/man2/exit_group.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit_group\b) | 0xe7 | int error\_code | - | - | - | - | - |
| <a name="x86_64_232"></a> [232](#x86_64_232) | epoll_wait | [man/](https://man7.org/linux/man-pages/man2/epoll_wait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_wait\b) | 0xe8 | int epfd | struct epoll\_event \*events | int maxevents | int timeout | - | - |
| <a name="x86_64_233"></a> [233](#x86_64_233) | epoll_ctl | [man/](https://man7.org/linux/man-pages/man2/epoll_ctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_ctl\b) | 0xe9 | int epfd | int op | int fd | struct epoll\_event \*event | - | - |
| <a name="x86_64_234"></a> [234](#x86_64_234) | tgkill | [man/](https://man7.org/linux/man-pages/man2/tgkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btgkill\b) | 0xea | pid\_t tgid | pid\_t pid | int sig | - | - | - |
| <a name="x86_64_235"></a> [235](#x86_64_235) | utimes | [man/](https://man7.org/linux/man-pages/man2/utimes.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimes\b) | 0xeb | char \*filename | struct \_\_kernel\_old\_timeval \*utimes | - | - | - | - |
| <a name="x86_64_236"></a> [236](#x86_64_236) | vserver | [man/](https://man7.org/linux/man-pages/man2/vserver.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvserver\b) | 0xec | ? | ? | ? | ? | ? | ? |
| <a name="x86_64_237"></a> [237](#x86_64_237) | mbind | [man/](https://man7.org/linux/man-pages/man2/mbind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmbind\b) | 0xed | unsigned long start | unsigned long len | unsigned long mode | const unsigned long \*nmask | unsigned long maxnode | unsigned flags |
| <a name="x86_64_238"></a> [238](#x86_64_238) | set_mempolicy | [man/](https://man7.org/linux/man-pages/man2/set_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_mempolicy\b) | 0xee | int mode | const unsigned long \*nmask | unsigned long maxnode | - | - | - |
| <a name="x86_64_239"></a> [239](#x86_64_239) | get_mempolicy | [man/](https://man7.org/linux/man-pages/man2/get_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_mempolicy\b) | 0xef | int \*policy | unsigned long \*nmask | unsigned long maxnode | unsigned long addr | unsigned long flags | - |
| <a name="x86_64_240"></a> [240](#x86_64_240) | mq_open | [man/](https://man7.org/linux/man-pages/man2/mq_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_open\b) | 0xf0 | const char \*name | int oflag | umode\_t mode | struct mq\_attr \*attr | - | - |
| <a name="x86_64_241"></a> [241](#x86_64_241) | mq_unlink | [man/](https://man7.org/linux/man-pages/man2/mq_unlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_unlink\b) | 0xf1 | const char \*name | - | - | - | - | - |
| <a name="x86_64_242"></a> [242](#x86_64_242) | mq_timedsend | [man/](https://man7.org/linux/man-pages/man2/mq_timedsend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedsend\b) | 0xf2 | mqd\_t mqdes | const char \*msg\_ptr | size\_t msg\_len | unsigned int msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="x86_64_243"></a> [243](#x86_64_243) | mq_timedreceive | [man/](https://man7.org/linux/man-pages/man2/mq_timedreceive.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedreceive\b) | 0xf3 | mqd\_t mqdes | char \*msg\_ptr | size\_t msg\_len | unsigned int \*msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="x86_64_244"></a> [244](#x86_64_244) | mq_notify | [man/](https://man7.org/linux/man-pages/man2/mq_notify.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_notify\b) | 0xf4 | mqd\_t mqdes | const struct sigevent \*notification | - | - | - | - |
| <a name="x86_64_245"></a> [245](#x86_64_245) | mq_getsetattr | [man/](https://man7.org/linux/man-pages/man2/mq_getsetattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_getsetattr\b) | 0xf5 | mqd\_t mqdes | const struct mq\_attr \*mqstat | struct mq\_attr \*omqstat | - | - | - |
| <a name="x86_64_246"></a> [246](#x86_64_246) | kexec_load | [man/](https://man7.org/linux/man-pages/man2/kexec_load.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkexec_load\b) | 0xf6 | unsigned long entry | unsigned long nr\_segments | struct kexec\_segment \*segments | unsigned long flags | - | - |
| <a name="x86_64_247"></a> [247](#x86_64_247) | waitid | [man/](https://man7.org/linux/man-pages/man2/waitid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwaitid\b) | 0xf7 | int which | pid\_t pid | struct siginfo \*infop | int options | struct rusage \*ru | - |
| <a name="x86_64_248"></a> [248](#x86_64_248) | add_key | [man/](https://man7.org/linux/man-pages/man2/add_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badd_key\b) | 0xf8 | const char \*\_type | const char \*\_description | const void \*\_payload | size\_t plen | key\_serial\_t destringid | - |
| <a name="x86_64_249"></a> [249](#x86_64_249) | request_key | [man/](https://man7.org/linux/man-pages/man2/request_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brequest_key\b) | 0xf9 | const char \*\_type | const char \*\_description | const char \*\_callout\_info | key\_serial\_t destringid | - | - |
| <a name="x86_64_250"></a> [250](#x86_64_250) | keyctl | [man/](https://man7.org/linux/man-pages/man2/keyctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkeyctl\b) | 0xfa | int cmd | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="x86_64_251"></a> [251](#x86_64_251) | ioprio_set | [man/](https://man7.org/linux/man-pages/man2/ioprio_set.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_set\b) | 0xfb | int which | int who | int ioprio | - | - | - |
| <a name="x86_64_252"></a> [252](#x86_64_252) | ioprio_get | [man/](https://man7.org/linux/man-pages/man2/ioprio_get.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_get\b) | 0xfc | int which | int who | - | - | - | - |
| <a name="x86_64_253"></a> [253](#x86_64_253) | inotify_init | [man/](https://man7.org/linux/man-pages/man2/inotify_init.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_init\b) | 0xfd | - | - | - | - | - | - |
| <a name="x86_64_254"></a> [254](#x86_64_254) | inotify_add_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_add_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_add_watch\b) | 0xfe | int fd | const char \*path | u32 mask | - | - | - |
| <a name="x86_64_255"></a> [255](#x86_64_255) | inotify_rm_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_rm_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_rm_watch\b) | 0xff | int fd | \_\_s32 wd | - | - | - | - |
| <a name="x86_64_256"></a> [256](#x86_64_256) | migrate_pages | [man/](https://man7.org/linux/man-pages/man2/migrate_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmigrate_pages\b) | 0x100 | pid\_t pid | unsigned long maxnode | const unsigned long \*from | const unsigned long \*to | - | - |
| <a name="x86_64_257"></a> [257](#x86_64_257) | openat | [man/](https://man7.org/linux/man-pages/man2/openat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopenat\b) | 0x101 | int dfd | const char \*filename | int flags | umode\_t mode | - | - |
| <a name="x86_64_258"></a> [258](#x86_64_258) | mkdirat | [man/](https://man7.org/linux/man-pages/man2/mkdirat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmkdirat\b) | 0x102 | int dfd | const char \* pathname | umode\_t mode | - | - | - |
| <a name="x86_64_259"></a> [259](#x86_64_259) | mknodat | [man/](https://man7.org/linux/man-pages/man2/mknodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmknodat\b) | 0x103 | int dfd | const char \* filename | umode\_t mode | unsigned dev | - | - |
| <a name="x86_64_260"></a> [260](#x86_64_260) | fchownat | [man/](https://man7.org/linux/man-pages/man2/fchownat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchownat\b) | 0x104 | int dfd | const char \*filename | uid\_t user | gid\_t group | int flag | - |
| <a name="x86_64_261"></a> [261](#x86_64_261) | futimesat | [man/](https://man7.org/linux/man-pages/man2/futimesat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutimesat\b) | 0x105 | int dfd | const char \*filename | struct \_\_kernel\_old\_timeval \*utimes | - | - | - |
| <a name="x86_64_262"></a> [262](#x86_64_262) | newfstatat | [man/](https://man7.org/linux/man-pages/man2/newfstatat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnewfstatat\b) | 0x106 | int dfd | const char \*filename | struct stat \*statbuf | int flag | - | - |
| <a name="x86_64_263"></a> [263](#x86_64_263) | unlinkat | [man/](https://man7.org/linux/man-pages/man2/unlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunlinkat\b) | 0x107 | int dfd | const char \* pathname | int flag | - | - | - |
| <a name="x86_64_264"></a> [264](#x86_64_264) | renameat | [man/](https://man7.org/linux/man-pages/man2/renameat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat\b) | 0x108 | int olddfd | const char \* oldname | int newdfd | const char \* newname | - | - |
| <a name="x86_64_265"></a> [265](#x86_64_265) | linkat | [man/](https://man7.org/linux/man-pages/man2/linkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blinkat\b) | 0x109 | int olddfd | const char \*oldname | int newdfd | const char \*newname | int flags | - |
| <a name="x86_64_266"></a> [266](#x86_64_266) | symlinkat | [man/](https://man7.org/linux/man-pages/man2/symlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsymlinkat\b) | 0x10a | const char \* oldname | int newdfd | const char \* newname | - | - | - |
| <a name="x86_64_267"></a> [267](#x86_64_267) | readlinkat | [man/](https://man7.org/linux/man-pages/man2/readlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadlinkat\b) | 0x10b | int dfd | const char \*path | char \*buf | int bufsiz | - | - |
| <a name="x86_64_268"></a> [268](#x86_64_268) | fchmodat | [man/](https://man7.org/linux/man-pages/man2/fchmodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmodat\b) | 0x10c | int dfd | const char \*filename | umode\_t mode | - | - | - |
| <a name="x86_64_269"></a> [269](#x86_64_269) | faccessat | [man/](https://man7.org/linux/man-pages/man2/faccessat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat\b) | 0x10d | int dfd | const char \*filename | int mode | - | - | - |
| <a name="x86_64_270"></a> [270](#x86_64_270) | pselect6 | [man/](https://man7.org/linux/man-pages/man2/pselect6.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpselect6\b) | 0x10e | int | fd\_set \* | fd\_set \* | fd\_set \* | struct \_\_kernel\_timespec \* | void \* |
| <a name="x86_64_271"></a> [271](#x86_64_271) | ppoll | [man/](https://man7.org/linux/man-pages/man2/ppoll.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bppoll\b) | 0x10f | struct pollfd \* | unsigned int | struct \_\_kernel\_timespec \* | const sigset\_t \* | size\_t | - |
| <a name="x86_64_272"></a> [272](#x86_64_272) | unshare | [man/](https://man7.org/linux/man-pages/man2/unshare.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunshare\b) | 0x110 | unsigned long unshare\_flags | - | - | - | - | - |
| <a name="x86_64_273"></a> [273](#x86_64_273) | set_robust_list | [man/](https://man7.org/linux/man-pages/man2/set_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_robust_list\b) | 0x111 | struct robust\_list\_head \*head | size\_t len | - | - | - | - |
| <a name="x86_64_274"></a> [274](#x86_64_274) | get_robust_list | [man/](https://man7.org/linux/man-pages/man2/get_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_robust_list\b) | 0x112 | int pid | struct robust\_list\_head \* \*head\_ptr | size\_t \*len\_ptr | - | - | - |
| <a name="x86_64_275"></a> [275](#x86_64_275) | splice | [man/](https://man7.org/linux/man-pages/man2/splice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsplice\b) | 0x113 | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="x86_64_276"></a> [276](#x86_64_276) | tee | [man/](https://man7.org/linux/man-pages/man2/tee.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btee\b) | 0x114 | int fdin | int fdout | size\_t len | unsigned int flags | - | - |
| <a name="x86_64_277"></a> [277](#x86_64_277) | sync_file_range | [man/](https://man7.org/linux/man-pages/man2/sync_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync_file_range\b) | 0x115 | int fd | loff\_t offset | loff\_t nbytes | unsigned int flags | - | - |
| <a name="x86_64_278"></a> [278](#x86_64_278) | vmsplice | [man/](https://man7.org/linux/man-pages/man2/vmsplice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvmsplice\b) | 0x116 | int fd | const struct iovec \*iov | unsigned long nr\_segs | unsigned int flags | - | - |
| <a name="x86_64_279"></a> [279](#x86_64_279) | move_pages | [man/](https://man7.org/linux/man-pages/man2/move_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_pages\b) | 0x117 | pid\_t pid | unsigned long nr\_pages | const void \* \*pages | const int \*nodes | int \*status | int flags |
| <a name="x86_64_280"></a> [280](#x86_64_280) | utimensat | [man/](https://man7.org/linux/man-pages/man2/utimensat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimensat\b) | 0x118 | int dfd | const char \*filename | struct \_\_kernel\_timespec \*utimes | int flags | - | - |
| <a name="x86_64_281"></a> [281](#x86_64_281) | epoll_pwait | [man/](https://man7.org/linux/man-pages/man2/epoll_pwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_pwait\b) | 0x119 | int epfd | struct epoll\_event \*events | int maxevents | int timeout | const sigset\_t \*sigmask | size\_t sigsetsize |
| <a name="x86_64_282"></a> [282](#x86_64_282) | signalfd | [man/](https://man7.org/linux/man-pages/man2/signalfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignalfd\b) | 0x11a | int ufd | sigset\_t \*user\_mask | size\_t sizemask | - | - | - |
| <a name="x86_64_283"></a> [283](#x86_64_283) | timerfd_create | [man/](https://man7.org/linux/man-pages/man2/timerfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_create\b) | 0x11b | int clockid | int flags | - | - | - | - |
| <a name="x86_64_284"></a> [284](#x86_64_284) | eventfd | [man/](https://man7.org/linux/man-pages/man2/eventfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\beventfd\b) | 0x11c | unsigned int count | - | - | - | - | - |
| <a name="x86_64_285"></a> [285](#x86_64_285) | fallocate | [man/](https://man7.org/linux/man-pages/man2/fallocate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfallocate\b) | 0x11d | int fd | int mode | loff\_t offset | loff\_t len | - | - |
| <a name="x86_64_286"></a> [286](#x86_64_286) | timerfd_settime | [man/](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_settime\b) | 0x11e | int ufd | int flags | const struct \_\_kernel\_itimerspec \*utmr | struct \_\_kernel\_itimerspec \*otmr | - | - |
| <a name="x86_64_287"></a> [287](#x86_64_287) | timerfd_gettime | [man/](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_gettime\b) | 0x11f | int ufd | struct \_\_kernel\_itimerspec \*otmr | - | - | - | - |
| <a name="x86_64_288"></a> [288](#x86_64_288) | accept4 | [man/](https://man7.org/linux/man-pages/man2/accept4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccept4\b) | 0x120 | int | struct sockaddr \* | int \* | int | - | - |
| <a name="x86_64_289"></a> [289](#x86_64_289) | signalfd4 | [man/](https://man7.org/linux/man-pages/man2/signalfd4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignalfd4\b) | 0x121 | int ufd | sigset\_t \*user\_mask | size\_t sizemask | int flags | - | - |
| <a name="x86_64_290"></a> [290](#x86_64_290) | eventfd2 | [man/](https://man7.org/linux/man-pages/man2/eventfd2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\beventfd2\b) | 0x122 | unsigned int count | int flags | - | - | - | - |
| <a name="x86_64_291"></a> [291](#x86_64_291) | epoll_create1 | [man/](https://man7.org/linux/man-pages/man2/epoll_create1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_create1\b) | 0x123 | int flags | - | - | - | - | - |
| <a name="x86_64_292"></a> [292](#x86_64_292) | dup3 | [man/](https://man7.org/linux/man-pages/man2/dup3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup3\b) | 0x124 | unsigned int oldfd | unsigned int newfd | int flags | - | - | - |
| <a name="x86_64_293"></a> [293](#x86_64_293) | pipe2 | [man/](https://man7.org/linux/man-pages/man2/pipe2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpipe2\b) | 0x125 | int \*fildes | int flags | - | - | - | - |
| <a name="x86_64_294"></a> [294](#x86_64_294) | inotify_init1 | [man/](https://man7.org/linux/man-pages/man2/inotify_init1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_init1\b) | 0x126 | int flags | - | - | - | - | - |
| <a name="x86_64_295"></a> [295](#x86_64_295) | preadv | [man/](https://man7.org/linux/man-pages/man2/preadv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv\b) | 0x127 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="x86_64_296"></a> [296](#x86_64_296) | pwritev | [man/](https://man7.org/linux/man-pages/man2/pwritev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev\b) | 0x128 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="x86_64_297"></a> [297](#x86_64_297) | rt_tgsigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_tgsigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_tgsigqueueinfo\b) | 0x129 | pid\_t tgid | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - |
| <a name="x86_64_298"></a> [298](#x86_64_298) | perf_event_open | [man/](https://man7.org/linux/man-pages/man2/perf_event_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bperf_event_open\b) | 0x12a | struct perf\_event\_attr \*attr\_uptr | pid\_t pid | int cpu | int group\_fd | unsigned long flags | - |
| <a name="x86_64_299"></a> [299](#x86_64_299) | recvmmsg | [man/](https://man7.org/linux/man-pages/man2/recvmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmmsg\b) | 0x12b | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | struct \_\_kernel\_timespec \*timeout | - |
| <a name="x86_64_300"></a> [300](#x86_64_300) | fanotify_init | [man/](https://man7.org/linux/man-pages/man2/fanotify_init.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_init\b) | 0x12c | unsigned int flags | unsigned int event\_f\_flags | - | - | - | - |
| <a name="x86_64_301"></a> [301](#x86_64_301) | fanotify_mark | [man/](https://man7.org/linux/man-pages/man2/fanotify_mark.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_mark\b) | 0x12d | int fanotify\_fd | unsigned int flags | u64 mask | int fd | const char \*pathname | - |
| <a name="x86_64_302"></a> [302](#x86_64_302) | prlimit64 | [man/](https://man7.org/linux/man-pages/man2/prlimit64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprlimit64\b) | 0x12e | pid\_t pid | unsigned int resource | const struct rlimit64 \*new\_rlim | struct rlimit64 \*old\_rlim | - | - |
| <a name="x86_64_303"></a> [303](#x86_64_303) | name_to_handle_at | [man/](https://man7.org/linux/man-pages/man2/name_to_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bname_to_handle_at\b) | 0x12f | int dfd | const char \*name | struct file\_handle \*handle | void \*mnt\_id | int flag | - |
| <a name="x86_64_304"></a> [304](#x86_64_304) | open_by_handle_at | [man/](https://man7.org/linux/man-pages/man2/open_by_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_by_handle_at\b) | 0x130 | int mountdirfd | struct file\_handle \*handle | int flags | - | - | - |
| <a name="x86_64_305"></a> [305](#x86_64_305) | clock_adjtime | [man/](https://man7.org/linux/man-pages/man2/clock_adjtime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_adjtime\b) | 0x131 | clockid\_t which\_clock | struct \_\_kernel\_timex \*tx | - | - | - | - |
| <a name="x86_64_306"></a> [306](#x86_64_306) | syncfs | [man/](https://man7.org/linux/man-pages/man2/syncfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyncfs\b) | 0x132 | int fd | - | - | - | - | - |
| <a name="x86_64_307"></a> [307](#x86_64_307) | sendmmsg | [man/](https://man7.org/linux/man-pages/man2/sendmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmmsg\b) | 0x133 | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | - | - |
| <a name="x86_64_308"></a> [308](#x86_64_308) | setns | [man/](https://man7.org/linux/man-pages/man2/setns.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetns\b) | 0x134 | int fd | int nstype | - | - | - | - |
| <a name="x86_64_309"></a> [309](#x86_64_309) | getcpu | [man/](https://man7.org/linux/man-pages/man2/getcpu.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcpu\b) | 0x135 | unsigned \*cpu | unsigned \*node | struct getcpu\_cache \*cache | - | - | - |
| <a name="x86_64_310"></a> [310](#x86_64_310) | process_vm_readv | [man/](https://man7.org/linux/man-pages/man2/process_vm_readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_readv\b) | 0x136 | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="x86_64_311"></a> [311](#x86_64_311) | process_vm_writev | [man/](https://man7.org/linux/man-pages/man2/process_vm_writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_writev\b) | 0x137 | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="x86_64_312"></a> [312](#x86_64_312) | kcmp | [man/](https://man7.org/linux/man-pages/man2/kcmp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkcmp\b) | 0x138 | pid\_t pid1 | pid\_t pid2 | int type | unsigned long idx1 | unsigned long idx2 | - |
| <a name="x86_64_313"></a> [313](#x86_64_313) | finit_module | [man/](https://man7.org/linux/man-pages/man2/finit_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfinit_module\b) | 0x139 | int fd | const char \*uargs | int flags | - | - | - |
| <a name="x86_64_314"></a> [314](#x86_64_314) | sched_setattr | [man/](https://man7.org/linux/man-pages/man2/sched_setattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setattr\b) | 0x13a | pid\_t pid | struct sched\_attr \*attr | unsigned int flags | - | - | - |
| <a name="x86_64_315"></a> [315](#x86_64_315) | sched_getattr | [man/](https://man7.org/linux/man-pages/man2/sched_getattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getattr\b) | 0x13b | pid\_t pid | struct sched\_attr \*attr | unsigned int size | unsigned int flags | - | - |
| <a name="x86_64_316"></a> [316](#x86_64_316) | renameat2 | [man/](https://man7.org/linux/man-pages/man2/renameat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat2\b) | 0x13c | int olddfd | const char \*oldname | int newdfd | const char \*newname | unsigned int flags | - |
| <a name="x86_64_317"></a> [317](#x86_64_317) | seccomp | [man/](https://man7.org/linux/man-pages/man2/seccomp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bseccomp\b) | 0x13d | unsigned int op | unsigned int flags | void \*uargs | - | - | - |
| <a name="x86_64_318"></a> [318](#x86_64_318) | getrandom | [man/](https://man7.org/linux/man-pages/man2/getrandom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrandom\b) | 0x13e | char \*buf | size\_t count | unsigned int flags | - | - | - |
| <a name="x86_64_319"></a> [319](#x86_64_319) | memfd_create | [man/](https://man7.org/linux/man-pages/man2/memfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmemfd_create\b) | 0x13f | const char \*uname\_ptr | unsigned int flags | - | - | - | - |
| <a name="x86_64_320"></a> [320](#x86_64_320) | kexec_file_load | [man/](https://man7.org/linux/man-pages/man2/kexec_file_load.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkexec_file_load\b) | 0x140 | int kernel\_fd | int initrd\_fd | unsigned long cmdline\_len | const char \*cmdline\_ptr | unsigned long flags | - |
| <a name="x86_64_321"></a> [321](#x86_64_321) | bpf | [man/](https://man7.org/linux/man-pages/man2/bpf.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbpf\b) | 0x141 | int cmd | union bpf\_attr \*attr | unsigned int size | - | - | - |
| <a name="x86_64_322"></a> [322](#x86_64_322) | execveat | [man/](https://man7.org/linux/man-pages/man2/execveat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecveat\b) | 0x142 | int dfd | const char \*filename | const char \*const \*argv | const char \*const \*envp | int flags | - |
| <a name="x86_64_323"></a> [323](#x86_64_323) | userfaultfd | [man/](https://man7.org/linux/man-pages/man2/userfaultfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buserfaultfd\b) | 0x143 | int flags | - | - | - | - | - |
| <a name="x86_64_324"></a> [324](#x86_64_324) | membarrier | [man/](https://man7.org/linux/man-pages/man2/membarrier.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmembarrier\b) | 0x144 | int cmd | unsigned int flags | int cpu\_id | - | - | - |
| <a name="x86_64_325"></a> [325](#x86_64_325) | mlock2 | [man/](https://man7.org/linux/man-pages/man2/mlock2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock2\b) | 0x145 | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="x86_64_326"></a> [326](#x86_64_326) | copy_file_range | [man/](https://man7.org/linux/man-pages/man2/copy_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcopy_file_range\b) | 0x146 | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="x86_64_327"></a> [327](#x86_64_327) | preadv2 | [man/](https://man7.org/linux/man-pages/man2/preadv2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv2\b) | 0x147 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="x86_64_328"></a> [328](#x86_64_328) | pwritev2 | [man/](https://man7.org/linux/man-pages/man2/pwritev2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev2\b) | 0x148 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="x86_64_329"></a> [329](#x86_64_329) | pkey_mprotect | [man/](https://man7.org/linux/man-pages/man2/pkey_mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_mprotect\b) | 0x149 | unsigned long start | size\_t len | unsigned long prot | int pkey | - | - |
| <a name="x86_64_330"></a> [330](#x86_64_330) | pkey_alloc | [man/](https://man7.org/linux/man-pages/man2/pkey_alloc.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_alloc\b) | 0x14a | unsigned long flags | unsigned long init\_val | - | - | - | - |
| <a name="x86_64_331"></a> [331](#x86_64_331) | pkey_free | [man/](https://man7.org/linux/man-pages/man2/pkey_free.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_free\b) | 0x14b | int pkey | - | - | - | - | - |
| <a name="x86_64_332"></a> [332](#x86_64_332) | statx | [man/](https://man7.org/linux/man-pages/man2/statx.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatx\b) | 0x14c | int dfd | const char \*path | unsigned flags | unsigned mask | struct statx \*buffer | - |
| <a name="x86_64_333"></a> [333](#x86_64_333) | io_pgetevents | [man/](https://man7.org/linux/man-pages/man2/io_pgetevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_pgetevents\b) | 0x14d | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | const struct \_\_aio\_sigset \*sig |
| <a name="x86_64_334"></a> [334](#x86_64_334) | rseq | [man/](https://man7.org/linux/man-pages/man2/rseq.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brseq\b) | 0x14e | struct rseq \*rseq | uint32\_t rseq\_len | int flags | uint32\_t sig | - | - |
| <a name="x86_64_335"></a> [335](#x86_64_335) | *not implemented* | | 0x14f ||
| <a name="x86_64_336"></a> [336](#x86_64_336) | *not implemented* | | 0x150 ||
| <a name="x86_64_337"></a> [337](#x86_64_337) | *not implemented* | | 0x151 ||
| <a name="x86_64_338"></a> [338](#x86_64_338) | *not implemented* | | 0x152 ||
| <a name="x86_64_339"></a> [339](#x86_64_339) | *not implemented* | | 0x153 ||
| <a name="x86_64_340"></a> [340](#x86_64_340) | *not implemented* | | 0x154 ||
| <a name="x86_64_341"></a> [341](#x86_64_341) | *not implemented* | | 0x155 ||
| <a name="x86_64_342"></a> [342](#x86_64_342) | *not implemented* | | 0x156 ||
| <a name="x86_64_343"></a> [343](#x86_64_343) | *not implemented* | | 0x157 ||
| <a name="x86_64_344"></a> [344](#x86_64_344) | *not implemented* | | 0x158 ||
| <a name="x86_64_345"></a> [345](#x86_64_345) | *not implemented* | | 0x159 ||
| <a name="x86_64_346"></a> [346](#x86_64_346) | *not implemented* | | 0x15a ||
| <a name="x86_64_347"></a> [347](#x86_64_347) | *not implemented* | | 0x15b ||
| <a name="x86_64_348"></a> [348](#x86_64_348) | *not implemented* | | 0x15c ||
| <a name="x86_64_349"></a> [349](#x86_64_349) | *not implemented* | | 0x15d ||
| <a name="x86_64_350"></a> [350](#x86_64_350) | *not implemented* | | 0x15e ||
| <a name="x86_64_351"></a> [351](#x86_64_351) | *not implemented* | | 0x15f ||
| <a name="x86_64_352"></a> [352](#x86_64_352) | *not implemented* | | 0x160 ||
| <a name="x86_64_353"></a> [353](#x86_64_353) | *not implemented* | | 0x161 ||
| <a name="x86_64_354"></a> [354](#x86_64_354) | *not implemented* | | 0x162 ||
| <a name="x86_64_355"></a> [355](#x86_64_355) | *not implemented* | | 0x163 ||
| <a name="x86_64_356"></a> [356](#x86_64_356) | *not implemented* | | 0x164 ||
| <a name="x86_64_357"></a> [357](#x86_64_357) | *not implemented* | | 0x165 ||
| <a name="x86_64_358"></a> [358](#x86_64_358) | *not implemented* | | 0x166 ||
| <a name="x86_64_359"></a> [359](#x86_64_359) | *not implemented* | | 0x167 ||
| <a name="x86_64_360"></a> [360](#x86_64_360) | *not implemented* | | 0x168 ||
| <a name="x86_64_361"></a> [361](#x86_64_361) | *not implemented* | | 0x169 ||
| <a name="x86_64_362"></a> [362](#x86_64_362) | *not implemented* | | 0x16a ||
| <a name="x86_64_363"></a> [363](#x86_64_363) | *not implemented* | | 0x16b ||
| <a name="x86_64_364"></a> [364](#x86_64_364) | *not implemented* | | 0x16c ||
| <a name="x86_64_365"></a> [365](#x86_64_365) | *not implemented* | | 0x16d ||
| <a name="x86_64_366"></a> [366](#x86_64_366) | *not implemented* | | 0x16e ||
| <a name="x86_64_367"></a> [367](#x86_64_367) | *not implemented* | | 0x16f ||
| <a name="x86_64_368"></a> [368](#x86_64_368) | *not implemented* | | 0x170 ||
| <a name="x86_64_369"></a> [369](#x86_64_369) | *not implemented* | | 0x171 ||
| <a name="x86_64_370"></a> [370](#x86_64_370) | *not implemented* | | 0x172 ||
| <a name="x86_64_371"></a> [371](#x86_64_371) | *not implemented* | | 0x173 ||
| <a name="x86_64_372"></a> [372](#x86_64_372) | *not implemented* | | 0x174 ||
| <a name="x86_64_373"></a> [373](#x86_64_373) | *not implemented* | | 0x175 ||
| <a name="x86_64_374"></a> [374](#x86_64_374) | *not implemented* | | 0x176 ||
| <a name="x86_64_375"></a> [375](#x86_64_375) | *not implemented* | | 0x177 ||
| <a name="x86_64_376"></a> [376](#x86_64_376) | *not implemented* | | 0x178 ||
| <a name="x86_64_377"></a> [377](#x86_64_377) | *not implemented* | | 0x179 ||
| <a name="x86_64_378"></a> [378](#x86_64_378) | *not implemented* | | 0x17a ||
| <a name="x86_64_379"></a> [379](#x86_64_379) | *not implemented* | | 0x17b ||
| <a name="x86_64_380"></a> [380](#x86_64_380) | *not implemented* | | 0x17c ||
| <a name="x86_64_381"></a> [381](#x86_64_381) | *not implemented* | | 0x17d ||
| <a name="x86_64_382"></a> [382](#x86_64_382) | *not implemented* | | 0x17e ||
| <a name="x86_64_383"></a> [383](#x86_64_383) | *not implemented* | | 0x17f ||
| <a name="x86_64_384"></a> [384](#x86_64_384) | *not implemented* | | 0x180 ||
| <a name="x86_64_385"></a> [385](#x86_64_385) | *not implemented* | | 0x181 ||
| <a name="x86_64_386"></a> [386](#x86_64_386) | *not implemented* | | 0x182 ||
| <a name="x86_64_387"></a> [387](#x86_64_387) | *not implemented* | | 0x183 ||
| <a name="x86_64_388"></a> [388](#x86_64_388) | *not implemented* | | 0x184 ||
| <a name="x86_64_389"></a> [389](#x86_64_389) | *not implemented* | | 0x185 ||
| <a name="x86_64_390"></a> [390](#x86_64_390) | *not implemented* | | 0x186 ||
| <a name="x86_64_391"></a> [391](#x86_64_391) | *not implemented* | | 0x187 ||
| <a name="x86_64_392"></a> [392](#x86_64_392) | *not implemented* | | 0x188 ||
| <a name="x86_64_393"></a> [393](#x86_64_393) | *not implemented* | | 0x189 ||
| <a name="x86_64_394"></a> [394](#x86_64_394) | *not implemented* | | 0x18a ||
| <a name="x86_64_395"></a> [395](#x86_64_395) | *not implemented* | | 0x18b ||
| <a name="x86_64_396"></a> [396](#x86_64_396) | *not implemented* | | 0x18c ||
| <a name="x86_64_397"></a> [397](#x86_64_397) | *not implemented* | | 0x18d ||
| <a name="x86_64_398"></a> [398](#x86_64_398) | *not implemented* | | 0x18e ||
| <a name="x86_64_399"></a> [399](#x86_64_399) | *not implemented* | | 0x18f ||
| <a name="x86_64_400"></a> [400](#x86_64_400) | *not implemented* | | 0x190 ||
| <a name="x86_64_401"></a> [401](#x86_64_401) | *not implemented* | | 0x191 ||
| <a name="x86_64_402"></a> [402](#x86_64_402) | *not implemented* | | 0x192 ||
| <a name="x86_64_403"></a> [403](#x86_64_403) | *not implemented* | | 0x193 ||
| <a name="x86_64_404"></a> [404](#x86_64_404) | *not implemented* | | 0x194 ||
| <a name="x86_64_405"></a> [405](#x86_64_405) | *not implemented* | | 0x195 ||
| <a name="x86_64_406"></a> [406](#x86_64_406) | *not implemented* | | 0x196 ||
| <a name="x86_64_407"></a> [407](#x86_64_407) | *not implemented* | | 0x197 ||
| <a name="x86_64_408"></a> [408](#x86_64_408) | *not implemented* | | 0x198 ||
| <a name="x86_64_409"></a> [409](#x86_64_409) | *not implemented* | | 0x199 ||
| <a name="x86_64_410"></a> [410](#x86_64_410) | *not implemented* | | 0x19a ||
| <a name="x86_64_411"></a> [411](#x86_64_411) | *not implemented* | | 0x19b ||
| <a name="x86_64_412"></a> [412](#x86_64_412) | *not implemented* | | 0x19c ||
| <a name="x86_64_413"></a> [413](#x86_64_413) | *not implemented* | | 0x19d ||
| <a name="x86_64_414"></a> [414](#x86_64_414) | *not implemented* | | 0x19e ||
| <a name="x86_64_415"></a> [415](#x86_64_415) | *not implemented* | | 0x19f ||
| <a name="x86_64_416"></a> [416](#x86_64_416) | *not implemented* | | 0x1a0 ||
| <a name="x86_64_417"></a> [417](#x86_64_417) | *not implemented* | | 0x1a1 ||
| <a name="x86_64_418"></a> [418](#x86_64_418) | *not implemented* | | 0x1a2 ||
| <a name="x86_64_419"></a> [419](#x86_64_419) | *not implemented* | | 0x1a3 ||
| <a name="x86_64_420"></a> [420](#x86_64_420) | *not implemented* | | 0x1a4 ||
| <a name="x86_64_421"></a> [421](#x86_64_421) | *not implemented* | | 0x1a5 ||
| <a name="x86_64_422"></a> [422](#x86_64_422) | *not implemented* | | 0x1a6 ||
| <a name="x86_64_423"></a> [423](#x86_64_423) | *not implemented* | | 0x1a7 ||
| <a name="x86_64_424"></a> [424](#x86_64_424) | pidfd_send_signal | [man/](https://man7.org/linux/man-pages/man2/pidfd_send_signal.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_send_signal\b) | 0x1a8 | int pidfd | int sig | siginfo\_t \*info | unsigned int flags | - | - |
| <a name="x86_64_425"></a> [425](#x86_64_425) | io_uring_setup | [man/](https://man7.org/linux/man-pages/man2/io_uring_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_setup\b) | 0x1a9 | u32 entries | struct io\_uring\_params \*p | - | - | - | - |
| <a name="x86_64_426"></a> [426](#x86_64_426) | io_uring_enter | [man/](https://man7.org/linux/man-pages/man2/io_uring_enter.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_enter\b) | 0x1aa | unsigned int fd | u32 to\_submit | u32 min\_complete | u32 flags | const void \*argp | size\_t argsz |
| <a name="x86_64_427"></a> [427](#x86_64_427) | io_uring_register | [man/](https://man7.org/linux/man-pages/man2/io_uring_register.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_register\b) | 0x1ab | unsigned int fd | unsigned int op | void \*arg | unsigned int nr\_args | - | - |
| <a name="x86_64_428"></a> [428](#x86_64_428) | open_tree | [man/](https://man7.org/linux/man-pages/man2/open_tree.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_tree\b) | 0x1ac | int dfd | const char \*path | unsigned flags | - | - | - |
| <a name="x86_64_429"></a> [429](#x86_64_429) | move_mount | [man/](https://man7.org/linux/man-pages/man2/move_mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_mount\b) | 0x1ad | int from\_dfd | const char \*from\_path | int to\_dfd | const char \*to\_path | unsigned int ms\_flags | - |
| <a name="x86_64_430"></a> [430](#x86_64_430) | fsopen | [man/](https://man7.org/linux/man-pages/man2/fsopen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsopen\b) | 0x1ae | const char \*fs\_name | unsigned int flags | - | - | - | - |
| <a name="x86_64_431"></a> [431](#x86_64_431) | fsconfig | [man/](https://man7.org/linux/man-pages/man2/fsconfig.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsconfig\b) | 0x1af | int fs\_fd | unsigned int cmd | const char \*key | const void \*value | int aux | - |
| <a name="x86_64_432"></a> [432](#x86_64_432) | fsmount | [man/](https://man7.org/linux/man-pages/man2/fsmount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsmount\b) | 0x1b0 | int fs\_fd | unsigned int flags | unsigned int ms\_flags | - | - | - |
| <a name="x86_64_433"></a> [433](#x86_64_433) | fspick | [man/](https://man7.org/linux/man-pages/man2/fspick.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfspick\b) | 0x1b1 | int dfd | const char \*path | unsigned int flags | - | - | - |
| <a name="x86_64_434"></a> [434](#x86_64_434) | pidfd_open | [man/](https://man7.org/linux/man-pages/man2/pidfd_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_open\b) | 0x1b2 | pid\_t pid | unsigned int flags | - | - | - | - |
| <a name="x86_64_435"></a> [435](#x86_64_435) | clone3 | [man/](https://man7.org/linux/man-pages/man2/clone3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone3\b) | 0x1b3 | struct clone\_args \*uargs | size\_t size | - | - | - | - |
| <a name="x86_64_436"></a> [436](#x86_64_436) | close_range | [man/](https://man7.org/linux/man-pages/man2/close_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose_range\b) | 0x1b4 | unsigned int fd | unsigned int max\_fd | unsigned int flags | - | - | - |
| <a name="x86_64_437"></a> [437](#x86_64_437) | *not implemented* | | 0x1b5 ||
| <a name="x86_64_438"></a> [438](#x86_64_438) | *not implemented* | | 0x1b6 ||
| <a name="x86_64_439"></a> [439](#x86_64_439) | faccessat2 | [man/](https://man7.org/linux/man-pages/man2/faccessat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat2\b) | 0x1b7 | int dfd | const char \*filename | int mode | int flags | - | - |

### arm (32-bit/EABI)

Compiled from [Linux 5.4.0 headers][linux-headers].

| NR | syscall name | references | %r7 | arg0 (%r0) | arg1 (%r1) | arg2 (%r2) | arg3 (%r3) | arg4 (%r4) | arg5 (%r5) |
|:---:|---|:---:|:---:|---|---|---|---|---|---|
| <a name="arm_0"></a> [0](#arm_0) | restart_syscall | [man/](https://man7.org/linux/man-pages/man2/restart_syscall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brestart_syscall\b) | 0x00 | - | - | - | - | - | - |
| <a name="arm_1"></a> [1](#arm_1) | exit | [man/](https://man7.org/linux/man-pages/man2/exit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit\b) | 0x01 | int error\_code | - | - | - | - | - |
| <a name="arm_2"></a> [2](#arm_2) | fork | [man/](https://man7.org/linux/man-pages/man2/fork.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfork\b) | 0x02 | - | - | - | - | - | - |
| <a name="arm_3"></a> [3](#arm_3) | read | [man/](https://man7.org/linux/man-pages/man2/read.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bread\b) | 0x03 | unsigned int fd | char \*buf | size\_t count | - | - | - |
| <a name="arm_4"></a> [4](#arm_4) | write | [man/](https://man7.org/linux/man-pages/man2/write.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwrite\b) | 0x04 | unsigned int fd | const char \*buf | size\_t count | - | - | - |
| <a name="arm_5"></a> [5](#arm_5) | open | [man/](https://man7.org/linux/man-pages/man2/open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen\b) | 0x05 | const char \*filename | int flags | umode\_t mode | - | - | - |
| <a name="arm_6"></a> [6](#arm_6) | close | [man/](https://man7.org/linux/man-pages/man2/close.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose\b) | 0x06 | unsigned int fd | - | - | - | - | - |
| <a name="arm_7"></a> [7](#arm_7) | *not implemented* | | 0x07 ||
| <a name="arm_8"></a> [8](#arm_8) | creat | [man/](https://man7.org/linux/man-pages/man2/creat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcreat\b) | 0x08 | const char \*pathname | umode\_t mode | - | - | - | - |
| <a name="arm_9"></a> [9](#arm_9) | link | [man/](https://man7.org/linux/man-pages/man2/link.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blink\b) | 0x09 | const char \*oldname | const char \*newname | - | - | - | - |
| <a name="arm_10"></a> [10](#arm_10) | unlink | [man/](https://man7.org/linux/man-pages/man2/unlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunlink\b) | 0x0a | const char \*pathname | - | - | - | - | - |
| <a name="arm_11"></a> [11](#arm_11) | execve | [man/](https://man7.org/linux/man-pages/man2/execve.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecve\b) | 0x0b | const char \*filename | const char \*const \*argv | const char \*const \*envp | - | - | - |
| <a name="arm_12"></a> [12](#arm_12) | chdir | [man/](https://man7.org/linux/man-pages/man2/chdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchdir\b) | 0x0c | const char \*filename | - | - | - | - | - |
| <a name="arm_13"></a> [13](#arm_13) | *not implemented* | | 0x0d ||
| <a name="arm_14"></a> [14](#arm_14) | mknod | [man/](https://man7.org/linux/man-pages/man2/mknod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmknod\b) | 0x0e | const char \*filename | umode\_t mode | unsigned dev | - | - | - |
| <a name="arm_15"></a> [15](#arm_15) | chmod | [man/](https://man7.org/linux/man-pages/man2/chmod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchmod\b) | 0x0f | const char \*filename | umode\_t mode | - | - | - | - |
| <a name="arm_16"></a> [16](#arm_16) | lchown | [man/](https://man7.org/linux/man-pages/man2/lchown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blchown\b) | 0x10 | const char \*filename | uid\_t user | gid\_t group | - | - | - |
| <a name="arm_17"></a> [17](#arm_17) | *not implemented* | | 0x11 ||
| <a name="arm_18"></a> [18](#arm_18) | *not implemented* | | 0x12 ||
| <a name="arm_19"></a> [19](#arm_19) | lseek | [man/](https://man7.org/linux/man-pages/man2/lseek.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blseek\b) | 0x13 | unsigned int fd | off\_t offset | unsigned int whence | - | - | - |
| <a name="arm_20"></a> [20](#arm_20) | getpid | [man/](https://man7.org/linux/man-pages/man2/getpid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpid\b) | 0x14 | - | - | - | - | - | - |
| <a name="arm_21"></a> [21](#arm_21) | mount | [man/](https://man7.org/linux/man-pages/man2/mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmount\b) | 0x15 | char \*dev\_name | char \*dir\_name | char \*type | unsigned long flags | void \*data | - |
| <a name="arm_22"></a> [22](#arm_22) | *not implemented* | | 0x16 ||
| <a name="arm_23"></a> [23](#arm_23) | setuid | [man/](https://man7.org/linux/man-pages/man2/setuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetuid\b) | 0x17 | uid\_t uid | - | - | - | - | - |
| <a name="arm_24"></a> [24](#arm_24) | getuid | [man/](https://man7.org/linux/man-pages/man2/getuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetuid\b) | 0x18 | - | - | - | - | - | - |
| <a name="arm_25"></a> [25](#arm_25) | *not implemented* | | 0x19 ||
| <a name="arm_26"></a> [26](#arm_26) | ptrace | [man/](https://man7.org/linux/man-pages/man2/ptrace.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bptrace\b) | 0x1a | long request | long pid | unsigned long addr | unsigned long data | - | - |
| <a name="arm_27"></a> [27](#arm_27) | *not implemented* | | 0x1b ||
| <a name="arm_28"></a> [28](#arm_28) | *not implemented* | | 0x1c ||
| <a name="arm_29"></a> [29](#arm_29) | pause | [man/](https://man7.org/linux/man-pages/man2/pause.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpause\b) | 0x1d | - | - | - | - | - | - |
| <a name="arm_30"></a> [30](#arm_30) | *not implemented* | | 0x1e ||
| <a name="arm_31"></a> [31](#arm_31) | *not implemented* | | 0x1f ||
| <a name="arm_32"></a> [32](#arm_32) | *not implemented* | | 0x20 ||
| <a name="arm_33"></a> [33](#arm_33) | access | [man/](https://man7.org/linux/man-pages/man2/access.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccess\b) | 0x21 | const char \*filename | int mode | - | - | - | - |
| <a name="arm_34"></a> [34](#arm_34) | nice | [man/](https://man7.org/linux/man-pages/man2/nice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnice\b) | 0x22 | int increment | - | - | - | - | - |
| <a name="arm_35"></a> [35](#arm_35) | *not implemented* | | 0x23 ||
| <a name="arm_36"></a> [36](#arm_36) | sync | [man/](https://man7.org/linux/man-pages/man2/sync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync\b) | 0x24 | - | - | - | - | - | - |
| <a name="arm_37"></a> [37](#arm_37) | kill | [man/](https://man7.org/linux/man-pages/man2/kill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkill\b) | 0x25 | pid\_t pid | int sig | - | - | - | - |
| <a name="arm_38"></a> [38](#arm_38) | rename | [man/](https://man7.org/linux/man-pages/man2/rename.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brename\b) | 0x26 | const char \*oldname | const char \*newname | - | - | - | - |
| <a name="arm_39"></a> [39](#arm_39) | mkdir | [man/](https://man7.org/linux/man-pages/man2/mkdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmkdir\b) | 0x27 | const char \*pathname | umode\_t mode | - | - | - | - |
| <a name="arm_40"></a> [40](#arm_40) | rmdir | [man/](https://man7.org/linux/man-pages/man2/rmdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brmdir\b) | 0x28 | const char \*pathname | - | - | - | - | - |
| <a name="arm_41"></a> [41](#arm_41) | dup | [man/](https://man7.org/linux/man-pages/man2/dup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup\b) | 0x29 | unsigned int fildes | - | - | - | - | - |
| <a name="arm_42"></a> [42](#arm_42) | pipe | [man/](https://man7.org/linux/man-pages/man2/pipe.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpipe\b) | 0x2a | int \*fildes | - | - | - | - | - |
| <a name="arm_43"></a> [43](#arm_43) | times | [man/](https://man7.org/linux/man-pages/man2/times.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimes\b) | 0x2b | struct tms \*tbuf | - | - | - | - | - |
| <a name="arm_44"></a> [44](#arm_44) | *not implemented* | | 0x2c ||
| <a name="arm_45"></a> [45](#arm_45) | brk | [man/](https://man7.org/linux/man-pages/man2/brk.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbrk\b) | 0x2d | unsigned long brk | - | - | - | - | - |
| <a name="arm_46"></a> [46](#arm_46) | setgid | [man/](https://man7.org/linux/man-pages/man2/setgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgid\b) | 0x2e | gid\_t gid | - | - | - | - | - |
| <a name="arm_47"></a> [47](#arm_47) | getgid | [man/](https://man7.org/linux/man-pages/man2/getgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgid\b) | 0x2f | - | - | - | - | - | - |
| <a name="arm_48"></a> [48](#arm_48) | *not implemented* | | 0x30 ||
| <a name="arm_49"></a> [49](#arm_49) | geteuid | [man/](https://man7.org/linux/man-pages/man2/geteuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgeteuid\b) | 0x31 | - | - | - | - | - | - |
| <a name="arm_50"></a> [50](#arm_50) | getegid | [man/](https://man7.org/linux/man-pages/man2/getegid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetegid\b) | 0x32 | - | - | - | - | - | - |
| <a name="arm_51"></a> [51](#arm_51) | acct | [man/](https://man7.org/linux/man-pages/man2/acct.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bacct\b) | 0x33 | const char \*name | - | - | - | - | - |
| <a name="arm_52"></a> [52](#arm_52) | umount2 | [man/](https://man7.org/linux/man-pages/man2/umount2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumount2\b) | 0x34 | ? | ? | ? | ? | ? | ? |
| <a name="arm_53"></a> [53](#arm_53) | *not implemented* | | 0x35 ||
| <a name="arm_54"></a> [54](#arm_54) | ioctl | [man/](https://man7.org/linux/man-pages/man2/ioctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioctl\b) | 0x36 | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="arm_55"></a> [55](#arm_55) | fcntl | [man/](https://man7.org/linux/man-pages/man2/fcntl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfcntl\b) | 0x37 | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="arm_56"></a> [56](#arm_56) | *not implemented* | | 0x38 ||
| <a name="arm_57"></a> [57](#arm_57) | setpgid | [man/](https://man7.org/linux/man-pages/man2/setpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpgid\b) | 0x39 | pid\_t pid | pid\_t pgid | - | - | - | - |
| <a name="arm_58"></a> [58](#arm_58) | *not implemented* | | 0x3a ||
| <a name="arm_59"></a> [59](#arm_59) | *not implemented* | | 0x3b ||
| <a name="arm_60"></a> [60](#arm_60) | umask | [man/](https://man7.org/linux/man-pages/man2/umask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumask\b) | 0x3c | int mask | - | - | - | - | - |
| <a name="arm_61"></a> [61](#arm_61) | chroot | [man/](https://man7.org/linux/man-pages/man2/chroot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchroot\b) | 0x3d | const char \*filename | - | - | - | - | - |
| <a name="arm_62"></a> [62](#arm_62) | ustat | [man/](https://man7.org/linux/man-pages/man2/ustat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bustat\b) | 0x3e | unsigned dev | struct ustat \*ubuf | - | - | - | - |
| <a name="arm_63"></a> [63](#arm_63) | dup2 | [man/](https://man7.org/linux/man-pages/man2/dup2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup2\b) | 0x3f | unsigned int oldfd | unsigned int newfd | - | - | - | - |
| <a name="arm_64"></a> [64](#arm_64) | getppid | [man/](https://man7.org/linux/man-pages/man2/getppid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetppid\b) | 0x40 | - | - | - | - | - | - |
| <a name="arm_65"></a> [65](#arm_65) | getpgrp | [man/](https://man7.org/linux/man-pages/man2/getpgrp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpgrp\b) | 0x41 | - | - | - | - | - | - |
| <a name="arm_66"></a> [66](#arm_66) | setsid | [man/](https://man7.org/linux/man-pages/man2/setsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsid\b) | 0x42 | - | - | - | - | - | - |
| <a name="arm_67"></a> [67](#arm_67) | sigaction | [man/](https://man7.org/linux/man-pages/man2/sigaction.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigaction\b) | 0x43 | int | const struct old\_sigaction \* | struct old\_sigaction \* | - | - | - |
| <a name="arm_68"></a> [68](#arm_68) | *not implemented* | | 0x44 ||
| <a name="arm_69"></a> [69](#arm_69) | *not implemented* | | 0x45 ||
| <a name="arm_70"></a> [70](#arm_70) | setreuid | [man/](https://man7.org/linux/man-pages/man2/setreuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetreuid\b) | 0x46 | uid\_t ruid | uid\_t euid | - | - | - | - |
| <a name="arm_71"></a> [71](#arm_71) | setregid | [man/](https://man7.org/linux/man-pages/man2/setregid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetregid\b) | 0x47 | gid\_t rgid | gid\_t egid | - | - | - | - |
| <a name="arm_72"></a> [72](#arm_72) | sigsuspend | [man/](https://man7.org/linux/man-pages/man2/sigsuspend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigsuspend\b) | 0x48 | int unused1 | int unused2 | old\_sigset\_t mask | - | - | - |
| <a name="arm_73"></a> [73](#arm_73) | sigpending | [man/](https://man7.org/linux/man-pages/man2/sigpending.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigpending\b) | 0x49 | old\_sigset\_t \*uset | - | - | - | - | - |
| <a name="arm_74"></a> [74](#arm_74) | sethostname | [man/](https://man7.org/linux/man-pages/man2/sethostname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsethostname\b) | 0x4a | char \*name | int len | - | - | - | - |
| <a name="arm_75"></a> [75](#arm_75) | setrlimit | [man/](https://man7.org/linux/man-pages/man2/setrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetrlimit\b) | 0x4b | unsigned int resource | struct rlimit \*rlim | - | - | - | - |
| <a name="arm_76"></a> [76](#arm_76) | *not implemented* | | 0x4c ||
| <a name="arm_77"></a> [77](#arm_77) | getrusage | [man/](https://man7.org/linux/man-pages/man2/getrusage.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrusage\b) | 0x4d | int who | struct rusage \*ru | - | - | - | - |
| <a name="arm_78"></a> [78](#arm_78) | gettimeofday | [man/](https://man7.org/linux/man-pages/man2/gettimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettimeofday\b) | 0x4e | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="arm_79"></a> [79](#arm_79) | settimeofday | [man/](https://man7.org/linux/man-pages/man2/settimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsettimeofday\b) | 0x4f | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="arm_80"></a> [80](#arm_80) | getgroups | [man/](https://man7.org/linux/man-pages/man2/getgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgroups\b) | 0x50 | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="arm_81"></a> [81](#arm_81) | setgroups | [man/](https://man7.org/linux/man-pages/man2/setgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgroups\b) | 0x51 | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="arm_82"></a> [82](#arm_82) | *not implemented* | | 0x52 ||
| <a name="arm_83"></a> [83](#arm_83) | symlink | [man/](https://man7.org/linux/man-pages/man2/symlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsymlink\b) | 0x53 | const char \*old | const char \*new | - | - | - | - |
| <a name="arm_84"></a> [84](#arm_84) | *not implemented* | | 0x54 ||
| <a name="arm_85"></a> [85](#arm_85) | readlink | [man/](https://man7.org/linux/man-pages/man2/readlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadlink\b) | 0x55 | const char \*path | char \*buf | int bufsiz | - | - | - |
| <a name="arm_86"></a> [86](#arm_86) | uselib | [man/](https://man7.org/linux/man-pages/man2/uselib.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buselib\b) | 0x56 | const char \*library | - | - | - | - | - |
| <a name="arm_87"></a> [87](#arm_87) | swapon | [man/](https://man7.org/linux/man-pages/man2/swapon.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapon\b) | 0x57 | const char \*specialfile | int swap\_flags | - | - | - | - |
| <a name="arm_88"></a> [88](#arm_88) | reboot | [man/](https://man7.org/linux/man-pages/man2/reboot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breboot\b) | 0x58 | int magic1 | int magic2 | unsigned int cmd | void \*arg | - | - |
| <a name="arm_89"></a> [89](#arm_89) | *not implemented* | | 0x59 ||
| <a name="arm_90"></a> [90](#arm_90) | *not implemented* | | 0x5a ||
| <a name="arm_91"></a> [91](#arm_91) | munmap | [man/](https://man7.org/linux/man-pages/man2/munmap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunmap\b) | 0x5b | unsigned long addr | size\_t len | - | - | - | - |
| <a name="arm_92"></a> [92](#arm_92) | truncate | [man/](https://man7.org/linux/man-pages/man2/truncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btruncate\b) | 0x5c | const char \*path | long length | - | - | - | - |
| <a name="arm_93"></a> [93](#arm_93) | ftruncate | [man/](https://man7.org/linux/man-pages/man2/ftruncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bftruncate\b) | 0x5d | unsigned int fd | off\_t length | - | - | - | - |
| <a name="arm_94"></a> [94](#arm_94) | fchmod | [man/](https://man7.org/linux/man-pages/man2/fchmod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmod\b) | 0x5e | unsigned int fd | umode\_t mode | - | - | - | - |
| <a name="arm_95"></a> [95](#arm_95) | fchown | [man/](https://man7.org/linux/man-pages/man2/fchown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchown\b) | 0x5f | unsigned int fd | uid\_t user | gid\_t group | - | - | - |
| <a name="arm_96"></a> [96](#arm_96) | getpriority | [man/](https://man7.org/linux/man-pages/man2/getpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpriority\b) | 0x60 | int which | int who | - | - | - | - |
| <a name="arm_97"></a> [97](#arm_97) | setpriority | [man/](https://man7.org/linux/man-pages/man2/setpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpriority\b) | 0x61 | int which | int who | int niceval | - | - | - |
| <a name="arm_98"></a> [98](#arm_98) | *not implemented* | | 0x62 ||
| <a name="arm_99"></a> [99](#arm_99) | statfs | [man/](https://man7.org/linux/man-pages/man2/statfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatfs\b) | 0x63 | const char \* path | struct statfs \*buf | - | - | - | - |
| <a name="arm_100"></a> [100](#arm_100) | fstatfs | [man/](https://man7.org/linux/man-pages/man2/fstatfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatfs\b) | 0x64 | unsigned int fd | struct statfs \*buf | - | - | - | - |
| <a name="arm_101"></a> [101](#arm_101) | *not implemented* | | 0x65 ||
| <a name="arm_102"></a> [102](#arm_102) | *not implemented* | | 0x66 ||
| <a name="arm_103"></a> [103](#arm_103) | syslog | [man/](https://man7.org/linux/man-pages/man2/syslog.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyslog\b) | 0x67 | int type | char \*buf | int len | - | - | - |
| <a name="arm_104"></a> [104](#arm_104) | setitimer | [man/](https://man7.org/linux/man-pages/man2/setitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetitimer\b) | 0x68 | int which | struct \_\_kernel\_old\_itimerval \*value | struct \_\_kernel\_old\_itimerval \*ovalue | - | - | - |
| <a name="arm_105"></a> [105](#arm_105) | getitimer | [man/](https://man7.org/linux/man-pages/man2/getitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetitimer\b) | 0x69 | int which | struct \_\_kernel\_old\_itimerval \*value | - | - | - | - |
| <a name="arm_106"></a> [106](#arm_106) | stat | [man/](https://man7.org/linux/man-pages/man2/stat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstat\b) | 0x6a | const char \*filename | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="arm_107"></a> [107](#arm_107) | lstat | [man/](https://man7.org/linux/man-pages/man2/lstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blstat\b) | 0x6b | const char \*filename | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="arm_108"></a> [108](#arm_108) | fstat | [man/](https://man7.org/linux/man-pages/man2/fstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstat\b) | 0x6c | unsigned int fd | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="arm_109"></a> [109](#arm_109) | *not implemented* | | 0x6d ||
| <a name="arm_110"></a> [110](#arm_110) | *not implemented* | | 0x6e ||
| <a name="arm_111"></a> [111](#arm_111) | vhangup | [man/](https://man7.org/linux/man-pages/man2/vhangup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvhangup\b) | 0x6f | - | - | - | - | - | - |
| <a name="arm_112"></a> [112](#arm_112) | *not implemented* | | 0x70 ||
| <a name="arm_113"></a> [113](#arm_113) | *not implemented* | | 0x71 ||
| <a name="arm_114"></a> [114](#arm_114) | wait4 | [man/](https://man7.org/linux/man-pages/man2/wait4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwait4\b) | 0x72 | pid\_t pid | int \*stat\_addr | int options | struct rusage \*ru | - | - |
| <a name="arm_115"></a> [115](#arm_115) | swapoff | [man/](https://man7.org/linux/man-pages/man2/swapoff.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapoff\b) | 0x73 | const char \*specialfile | - | - | - | - | - |
| <a name="arm_116"></a> [116](#arm_116) | sysinfo | [man/](https://man7.org/linux/man-pages/man2/sysinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsysinfo\b) | 0x74 | struct sysinfo \*info | - | - | - | - | - |
| <a name="arm_117"></a> [117](#arm_117) | *not implemented* | | 0x75 ||
| <a name="arm_118"></a> [118](#arm_118) | fsync | [man/](https://man7.org/linux/man-pages/man2/fsync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsync\b) | 0x76 | unsigned int fd | - | - | - | - | - |
| <a name="arm_119"></a> [119](#arm_119) | sigreturn | [man/](https://man7.org/linux/man-pages/man2/sigreturn.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigreturn\b) | 0x77 | ? | ? | ? | ? | ? | ? |
| <a name="arm_120"></a> [120](#arm_120) | clone | [man/](https://man7.org/linux/man-pages/man2/clone.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone\b) | 0x78 | unsigned long | unsigned long | int \* | int \* | unsigned long | - |
| <a name="arm_121"></a> [121](#arm_121) | setdomainname | [man/](https://man7.org/linux/man-pages/man2/setdomainname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetdomainname\b) | 0x79 | char \*name | int len | - | - | - | - |
| <a name="arm_122"></a> [122](#arm_122) | uname | [man/](https://man7.org/linux/man-pages/man2/uname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buname\b) | 0x7a | struct old\_utsname \* | - | - | - | - | - |
| <a name="arm_123"></a> [123](#arm_123) | *not implemented* | | 0x7b ||
| <a name="arm_124"></a> [124](#arm_124) | adjtimex | [man/](https://man7.org/linux/man-pages/man2/adjtimex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badjtimex\b) | 0x7c | struct \_\_kernel\_timex \*txc\_p | - | - | - | - | - |
| <a name="arm_125"></a> [125](#arm_125) | mprotect | [man/](https://man7.org/linux/man-pages/man2/mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmprotect\b) | 0x7d | unsigned long start | size\_t len | unsigned long prot | - | - | - |
| <a name="arm_126"></a> [126](#arm_126) | sigprocmask | [man/](https://man7.org/linux/man-pages/man2/sigprocmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigprocmask\b) | 0x7e | int how | old\_sigset\_t \*set | old\_sigset\_t \*oset | - | - | - |
| <a name="arm_127"></a> [127](#arm_127) | *not implemented* | | 0x7f ||
| <a name="arm_128"></a> [128](#arm_128) | init_module | [man/](https://man7.org/linux/man-pages/man2/init_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binit_module\b) | 0x80 | void \*umod | unsigned long len | const char \*uargs | - | - | - |
| <a name="arm_129"></a> [129](#arm_129) | delete_module | [man/](https://man7.org/linux/man-pages/man2/delete_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdelete_module\b) | 0x81 | const char \*name\_user | unsigned int flags | - | - | - | - |
| <a name="arm_130"></a> [130](#arm_130) | *not implemented* | | 0x82 ||
| <a name="arm_131"></a> [131](#arm_131) | quotactl | [man/](https://man7.org/linux/man-pages/man2/quotactl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bquotactl\b) | 0x83 | unsigned int cmd | const char \*special | qid\_t id | void \*addr | - | - |
| <a name="arm_132"></a> [132](#arm_132) | getpgid | [man/](https://man7.org/linux/man-pages/man2/getpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpgid\b) | 0x84 | pid\_t pid | - | - | - | - | - |
| <a name="arm_133"></a> [133](#arm_133) | fchdir | [man/](https://man7.org/linux/man-pages/man2/fchdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchdir\b) | 0x85 | unsigned int fd | - | - | - | - | - |
| <a name="arm_134"></a> [134](#arm_134) | bdflush | [man/](https://man7.org/linux/man-pages/man2/bdflush.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbdflush\b) | 0x86 | ? | ? | ? | ? | ? | ? |
| <a name="arm_135"></a> [135](#arm_135) | sysfs | [man/](https://man7.org/linux/man-pages/man2/sysfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsysfs\b) | 0x87 | int option | unsigned long arg1 | unsigned long arg2 | - | - | - |
| <a name="arm_136"></a> [136](#arm_136) | personality | [man/](https://man7.org/linux/man-pages/man2/personality.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpersonality\b) | 0x88 | unsigned int personality | - | - | - | - | - |
| <a name="arm_137"></a> [137](#arm_137) | *not implemented* | | 0x89 ||
| <a name="arm_138"></a> [138](#arm_138) | setfsuid | [man/](https://man7.org/linux/man-pages/man2/setfsuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsuid\b) | 0x8a | uid\_t uid | - | - | - | - | - |
| <a name="arm_139"></a> [139](#arm_139) | setfsgid | [man/](https://man7.org/linux/man-pages/man2/setfsgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsgid\b) | 0x8b | gid\_t gid | - | - | - | - | - |
| <a name="arm_140"></a> [140](#arm_140) | _llseek | [man/](https://man7.org/linux/man-pages/man2/_llseek.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\b_llseek\b) | 0x8c | ? | ? | ? | ? | ? | ? |
| <a name="arm_141"></a> [141](#arm_141) | getdents | [man/](https://man7.org/linux/man-pages/man2/getdents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetdents\b) | 0x8d | unsigned int fd | struct linux\_dirent \*dirent | unsigned int count | - | - | - |
| <a name="arm_142"></a> [142](#arm_142) | _newselect | [man/](https://man7.org/linux/man-pages/man2/_newselect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\b_newselect\b) | 0x8e | ? | ? | ? | ? | ? | ? |
| <a name="arm_143"></a> [143](#arm_143) | flock | [man/](https://man7.org/linux/man-pages/man2/flock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflock\b) | 0x8f | unsigned int fd | unsigned int cmd | - | - | - | - |
| <a name="arm_144"></a> [144](#arm_144) | msync | [man/](https://man7.org/linux/man-pages/man2/msync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsync\b) | 0x90 | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="arm_145"></a> [145](#arm_145) | readv | [man/](https://man7.org/linux/man-pages/man2/readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadv\b) | 0x91 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="arm_146"></a> [146](#arm_146) | writev | [man/](https://man7.org/linux/man-pages/man2/writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwritev\b) | 0x92 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="arm_147"></a> [147](#arm_147) | getsid | [man/](https://man7.org/linux/man-pages/man2/getsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsid\b) | 0x93 | pid\_t pid | - | - | - | - | - |
| <a name="arm_148"></a> [148](#arm_148) | fdatasync | [man/](https://man7.org/linux/man-pages/man2/fdatasync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfdatasync\b) | 0x94 | unsigned int fd | - | - | - | - | - |
| <a name="arm_149"></a> [149](#arm_149) | _sysctl | [man/](https://man7.org/linux/man-pages/man2/_sysctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\b_sysctl\b) | 0x95 | ? | ? | ? | ? | ? | ? |
| <a name="arm_150"></a> [150](#arm_150) | mlock | [man/](https://man7.org/linux/man-pages/man2/mlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock\b) | 0x96 | unsigned long start | size\_t len | - | - | - | - |
| <a name="arm_151"></a> [151](#arm_151) | munlock | [man/](https://man7.org/linux/man-pages/man2/munlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlock\b) | 0x97 | unsigned long start | size\_t len | - | - | - | - |
| <a name="arm_152"></a> [152](#arm_152) | mlockall | [man/](https://man7.org/linux/man-pages/man2/mlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlockall\b) | 0x98 | int flags | - | - | - | - | - |
| <a name="arm_153"></a> [153](#arm_153) | munlockall | [man/](https://man7.org/linux/man-pages/man2/munlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlockall\b) | 0x99 | - | - | - | - | - | - |
| <a name="arm_154"></a> [154](#arm_154) | sched_setparam | [man/](https://man7.org/linux/man-pages/man2/sched_setparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setparam\b) | 0x9a | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="arm_155"></a> [155](#arm_155) | sched_getparam | [man/](https://man7.org/linux/man-pages/man2/sched_getparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getparam\b) | 0x9b | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="arm_156"></a> [156](#arm_156) | sched_setscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setscheduler\b) | 0x9c | pid\_t pid | int policy | struct sched\_param \*param | - | - | - |
| <a name="arm_157"></a> [157](#arm_157) | sched_getscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_getscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getscheduler\b) | 0x9d | pid\_t pid | - | - | - | - | - |
| <a name="arm_158"></a> [158](#arm_158) | sched_yield | [man/](https://man7.org/linux/man-pages/man2/sched_yield.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_yield\b) | 0x9e | - | - | - | - | - | - |
| <a name="arm_159"></a> [159](#arm_159) | sched_get_priority_max | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_max.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_max\b) | 0x9f | int policy | - | - | - | - | - |
| <a name="arm_160"></a> [160](#arm_160) | sched_get_priority_min | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_min.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_min\b) | 0xa0 | int policy | - | - | - | - | - |
| <a name="arm_161"></a> [161](#arm_161) | sched_rr_get_interval | [man/](https://man7.org/linux/man-pages/man2/sched_rr_get_interval.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_rr_get_interval\b) | 0xa1 | pid\_t pid | struct \_\_kernel\_timespec \*interval | - | - | - | - |
| <a name="arm_162"></a> [162](#arm_162) | nanosleep | [man/](https://man7.org/linux/man-pages/man2/nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnanosleep\b) | 0xa2 | struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - | - | - |
| <a name="arm_163"></a> [163](#arm_163) | mremap | [man/](https://man7.org/linux/man-pages/man2/mremap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmremap\b) | 0xa3 | unsigned long addr | unsigned long old\_len | unsigned long new\_len | unsigned long flags | unsigned long new\_addr | - |
| <a name="arm_164"></a> [164](#arm_164) | setresuid | [man/](https://man7.org/linux/man-pages/man2/setresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresuid\b) | 0xa4 | uid\_t ruid | uid\_t euid | uid\_t suid | - | - | - |
| <a name="arm_165"></a> [165](#arm_165) | getresuid | [man/](https://man7.org/linux/man-pages/man2/getresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresuid\b) | 0xa5 | uid\_t \*ruid | uid\_t \*euid | uid\_t \*suid | - | - | - |
| <a name="arm_166"></a> [166](#arm_166) | *not implemented* | | 0xa6 ||
| <a name="arm_167"></a> [167](#arm_167) | *not implemented* | | 0xa7 ||
| <a name="arm_168"></a> [168](#arm_168) | poll | [man/](https://man7.org/linux/man-pages/man2/poll.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpoll\b) | 0xa8 | struct pollfd \*ufds | unsigned int nfds | int timeout | - | - | - |
| <a name="arm_169"></a> [169](#arm_169) | nfsservctl | [man/](https://man7.org/linux/man-pages/man2/nfsservctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnfsservctl\b) | 0xa9 | ? | ? | ? | ? | ? | ? |
| <a name="arm_170"></a> [170](#arm_170) | setresgid | [man/](https://man7.org/linux/man-pages/man2/setresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresgid\b) | 0xaa | gid\_t rgid | gid\_t egid | gid\_t sgid | - | - | - |
| <a name="arm_171"></a> [171](#arm_171) | getresgid | [man/](https://man7.org/linux/man-pages/man2/getresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresgid\b) | 0xab | gid\_t \*rgid | gid\_t \*egid | gid\_t \*sgid | - | - | - |
| <a name="arm_172"></a> [172](#arm_172) | prctl | [man/](https://man7.org/linux/man-pages/man2/prctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprctl\b) | 0xac | int option | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="arm_173"></a> [173](#arm_173) | rt_sigreturn | [man/](https://man7.org/linux/man-pages/man2/rt_sigreturn.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigreturn\b) | 0xad | ? | ? | ? | ? | ? | ? |
| <a name="arm_174"></a> [174](#arm_174) | rt_sigaction | [man/](https://man7.org/linux/man-pages/man2/rt_sigaction.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigaction\b) | 0xae | int | const struct sigaction \* | struct sigaction \* | size\_t | - | - |
| <a name="arm_175"></a> [175](#arm_175) | rt_sigprocmask | [man/](https://man7.org/linux/man-pages/man2/rt_sigprocmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigprocmask\b) | 0xaf | int how | sigset\_t \*set | sigset\_t \*oset | size\_t sigsetsize | - | - |
| <a name="arm_176"></a> [176](#arm_176) | rt_sigpending | [man/](https://man7.org/linux/man-pages/man2/rt_sigpending.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigpending\b) | 0xb0 | sigset\_t \*set | size\_t sigsetsize | - | - | - | - |
| <a name="arm_177"></a> [177](#arm_177) | rt_sigtimedwait | [man/](https://man7.org/linux/man-pages/man2/rt_sigtimedwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigtimedwait\b) | 0xb1 | const sigset\_t \*uthese | siginfo\_t \*uinfo | const struct \_\_kernel\_timespec \*uts | size\_t sigsetsize | - | - |
| <a name="arm_178"></a> [178](#arm_178) | rt_sigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_sigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigqueueinfo\b) | 0xb2 | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - | - |
| <a name="arm_179"></a> [179](#arm_179) | rt_sigsuspend | [man/](https://man7.org/linux/man-pages/man2/rt_sigsuspend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigsuspend\b) | 0xb3 | sigset\_t \*unewset | size\_t sigsetsize | - | - | - | - |
| <a name="arm_180"></a> [180](#arm_180) | pread64 | [man/](https://man7.org/linux/man-pages/man2/pread64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpread64\b) | 0xb4 | unsigned int fd | char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="arm_181"></a> [181](#arm_181) | pwrite64 | [man/](https://man7.org/linux/man-pages/man2/pwrite64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwrite64\b) | 0xb5 | unsigned int fd | const char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="arm_182"></a> [182](#arm_182) | chown | [man/](https://man7.org/linux/man-pages/man2/chown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchown\b) | 0xb6 | const char \*filename | uid\_t user | gid\_t group | - | - | - |
| <a name="arm_183"></a> [183](#arm_183) | getcwd | [man/](https://man7.org/linux/man-pages/man2/getcwd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcwd\b) | 0xb7 | char \*buf | unsigned long size | - | - | - | - |
| <a name="arm_184"></a> [184](#arm_184) | capget | [man/](https://man7.org/linux/man-pages/man2/capget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapget\b) | 0xb8 | cap\_user\_header\_t header | cap\_user\_data\_t dataptr | - | - | - | - |
| <a name="arm_185"></a> [185](#arm_185) | capset | [man/](https://man7.org/linux/man-pages/man2/capset.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapset\b) | 0xb9 | cap\_user\_header\_t header | const cap\_user\_data\_t data | - | - | - | - |
| <a name="arm_186"></a> [186](#arm_186) | sigaltstack | [man/](https://man7.org/linux/man-pages/man2/sigaltstack.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigaltstack\b) | 0xba | const struct sigaltstack \*uss | struct sigaltstack \*uoss | - | - | - | - |
| <a name="arm_187"></a> [187](#arm_187) | sendfile | [man/](https://man7.org/linux/man-pages/man2/sendfile.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendfile\b) | 0xbb | int out\_fd | int in\_fd | off\_t \*offset | size\_t count | - | - |
| <a name="arm_188"></a> [188](#arm_188) | *not implemented* | | 0xbc ||
| <a name="arm_189"></a> [189](#arm_189) | *not implemented* | | 0xbd ||
| <a name="arm_190"></a> [190](#arm_190) | vfork | [man/](https://man7.org/linux/man-pages/man2/vfork.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvfork\b) | 0xbe | - | - | - | - | - | - |
| <a name="arm_191"></a> [191](#arm_191) | ugetrlimit | [man/](https://man7.org/linux/man-pages/man2/ugetrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bugetrlimit\b) | 0xbf | ? | ? | ? | ? | ? | ? |
| <a name="arm_192"></a> [192](#arm_192) | mmap2 | [man/](https://man7.org/linux/man-pages/man2/mmap2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmmap2\b) | 0xc0 | ? | ? | ? | ? | ? | ? |
| <a name="arm_193"></a> [193](#arm_193) | truncate64 | [man/](https://man7.org/linux/man-pages/man2/truncate64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btruncate64\b) | 0xc1 | const char \*path | loff\_t length | - | - | - | - |
| <a name="arm_194"></a> [194](#arm_194) | ftruncate64 | [man/](https://man7.org/linux/man-pages/man2/ftruncate64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bftruncate64\b) | 0xc2 | unsigned int fd | loff\_t length | - | - | - | - |
| <a name="arm_195"></a> [195](#arm_195) | stat64 | [man/](https://man7.org/linux/man-pages/man2/stat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstat64\b) | 0xc3 | const char \*filename | struct stat64 \*statbuf | - | - | - | - |
| <a name="arm_196"></a> [196](#arm_196) | lstat64 | [man/](https://man7.org/linux/man-pages/man2/lstat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blstat64\b) | 0xc4 | const char \*filename | struct stat64 \*statbuf | - | - | - | - |
| <a name="arm_197"></a> [197](#arm_197) | fstat64 | [man/](https://man7.org/linux/man-pages/man2/fstat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstat64\b) | 0xc5 | unsigned long fd | struct stat64 \*statbuf | - | - | - | - |
| <a name="arm_198"></a> [198](#arm_198) | lchown32 | [man/](https://man7.org/linux/man-pages/man2/lchown32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blchown32\b) | 0xc6 | ? | ? | ? | ? | ? | ? |
| <a name="arm_199"></a> [199](#arm_199) | getuid32 | [man/](https://man7.org/linux/man-pages/man2/getuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetuid32\b) | 0xc7 | ? | ? | ? | ? | ? | ? |
| <a name="arm_200"></a> [200](#arm_200) | getgid32 | [man/](https://man7.org/linux/man-pages/man2/getgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgid32\b) | 0xc8 | ? | ? | ? | ? | ? | ? |
| <a name="arm_201"></a> [201](#arm_201) | geteuid32 | [man/](https://man7.org/linux/man-pages/man2/geteuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgeteuid32\b) | 0xc9 | ? | ? | ? | ? | ? | ? |
| <a name="arm_202"></a> [202](#arm_202) | getegid32 | [man/](https://man7.org/linux/man-pages/man2/getegid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetegid32\b) | 0xca | ? | ? | ? | ? | ? | ? |
| <a name="arm_203"></a> [203](#arm_203) | setreuid32 | [man/](https://man7.org/linux/man-pages/man2/setreuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetreuid32\b) | 0xcb | ? | ? | ? | ? | ? | ? |
| <a name="arm_204"></a> [204](#arm_204) | setregid32 | [man/](https://man7.org/linux/man-pages/man2/setregid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetregid32\b) | 0xcc | ? | ? | ? | ? | ? | ? |
| <a name="arm_205"></a> [205](#arm_205) | getgroups32 | [man/](https://man7.org/linux/man-pages/man2/getgroups32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgroups32\b) | 0xcd | ? | ? | ? | ? | ? | ? |
| <a name="arm_206"></a> [206](#arm_206) | setgroups32 | [man/](https://man7.org/linux/man-pages/man2/setgroups32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgroups32\b) | 0xce | ? | ? | ? | ? | ? | ? |
| <a name="arm_207"></a> [207](#arm_207) | fchown32 | [man/](https://man7.org/linux/man-pages/man2/fchown32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchown32\b) | 0xcf | ? | ? | ? | ? | ? | ? |
| <a name="arm_208"></a> [208](#arm_208) | setresuid32 | [man/](https://man7.org/linux/man-pages/man2/setresuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresuid32\b) | 0xd0 | ? | ? | ? | ? | ? | ? |
| <a name="arm_209"></a> [209](#arm_209) | getresuid32 | [man/](https://man7.org/linux/man-pages/man2/getresuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresuid32\b) | 0xd1 | ? | ? | ? | ? | ? | ? |
| <a name="arm_210"></a> [210](#arm_210) | setresgid32 | [man/](https://man7.org/linux/man-pages/man2/setresgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresgid32\b) | 0xd2 | ? | ? | ? | ? | ? | ? |
| <a name="arm_211"></a> [211](#arm_211) | getresgid32 | [man/](https://man7.org/linux/man-pages/man2/getresgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresgid32\b) | 0xd3 | ? | ? | ? | ? | ? | ? |
| <a name="arm_212"></a> [212](#arm_212) | chown32 | [man/](https://man7.org/linux/man-pages/man2/chown32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchown32\b) | 0xd4 | ? | ? | ? | ? | ? | ? |
| <a name="arm_213"></a> [213](#arm_213) | setuid32 | [man/](https://man7.org/linux/man-pages/man2/setuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetuid32\b) | 0xd5 | ? | ? | ? | ? | ? | ? |
| <a name="arm_214"></a> [214](#arm_214) | setgid32 | [man/](https://man7.org/linux/man-pages/man2/setgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgid32\b) | 0xd6 | ? | ? | ? | ? | ? | ? |
| <a name="arm_215"></a> [215](#arm_215) | setfsuid32 | [man/](https://man7.org/linux/man-pages/man2/setfsuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsuid32\b) | 0xd7 | ? | ? | ? | ? | ? | ? |
| <a name="arm_216"></a> [216](#arm_216) | setfsgid32 | [man/](https://man7.org/linux/man-pages/man2/setfsgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsgid32\b) | 0xd8 | ? | ? | ? | ? | ? | ? |
| <a name="arm_217"></a> [217](#arm_217) | getdents64 | [man/](https://man7.org/linux/man-pages/man2/getdents64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetdents64\b) | 0xd9 | unsigned int fd | struct linux\_dirent64 \*dirent | unsigned int count | - | - | - |
| <a name="arm_218"></a> [218](#arm_218) | pivot_root | [man/](https://man7.org/linux/man-pages/man2/pivot_root.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpivot_root\b) | 0xda | const char \*new\_root | const char \*put\_old | - | - | - | - |
| <a name="arm_219"></a> [219](#arm_219) | mincore | [man/](https://man7.org/linux/man-pages/man2/mincore.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmincore\b) | 0xdb | unsigned long start | size\_t len | unsigned char \* vec | - | - | - |
| <a name="arm_220"></a> [220](#arm_220) | madvise | [man/](https://man7.org/linux/man-pages/man2/madvise.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmadvise\b) | 0xdc | unsigned long start | size\_t len | int behavior | - | - | - |
| <a name="arm_221"></a> [221](#arm_221) | fcntl64 | [man/](https://man7.org/linux/man-pages/man2/fcntl64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfcntl64\b) | 0xdd | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="arm_222"></a> [222](#arm_222) | *not implemented* | | 0xde ||
| <a name="arm_223"></a> [223](#arm_223) | *not implemented* | | 0xdf ||
| <a name="arm_224"></a> [224](#arm_224) | gettid | [man/](https://man7.org/linux/man-pages/man2/gettid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettid\b) | 0xe0 | - | - | - | - | - | - |
| <a name="arm_225"></a> [225](#arm_225) | readahead | [man/](https://man7.org/linux/man-pages/man2/readahead.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadahead\b) | 0xe1 | int fd | loff\_t offset | size\_t count | - | - | - |
| <a name="arm_226"></a> [226](#arm_226) | setxattr | [man/](https://man7.org/linux/man-pages/man2/setxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetxattr\b) | 0xe2 | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="arm_227"></a> [227](#arm_227) | lsetxattr | [man/](https://man7.org/linux/man-pages/man2/lsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blsetxattr\b) | 0xe3 | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="arm_228"></a> [228](#arm_228) | fsetxattr | [man/](https://man7.org/linux/man-pages/man2/fsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsetxattr\b) | 0xe4 | int fd | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="arm_229"></a> [229](#arm_229) | getxattr | [man/](https://man7.org/linux/man-pages/man2/getxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetxattr\b) | 0xe5 | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="arm_230"></a> [230](#arm_230) | lgetxattr | [man/](https://man7.org/linux/man-pages/man2/lgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blgetxattr\b) | 0xe6 | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="arm_231"></a> [231](#arm_231) | fgetxattr | [man/](https://man7.org/linux/man-pages/man2/fgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfgetxattr\b) | 0xe7 | int fd | const char \*name | void \*value | size\_t size | - | - |
| <a name="arm_232"></a> [232](#arm_232) | listxattr | [man/](https://man7.org/linux/man-pages/man2/listxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blistxattr\b) | 0xe8 | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="arm_233"></a> [233](#arm_233) | llistxattr | [man/](https://man7.org/linux/man-pages/man2/llistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bllistxattr\b) | 0xe9 | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="arm_234"></a> [234](#arm_234) | flistxattr | [man/](https://man7.org/linux/man-pages/man2/flistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflistxattr\b) | 0xea | int fd | char \*list | size\_t size | - | - | - |
| <a name="arm_235"></a> [235](#arm_235) | removexattr | [man/](https://man7.org/linux/man-pages/man2/removexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremovexattr\b) | 0xeb | const char \*path | const char \*name | - | - | - | - |
| <a name="arm_236"></a> [236](#arm_236) | lremovexattr | [man/](https://man7.org/linux/man-pages/man2/lremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blremovexattr\b) | 0xec | const char \*path | const char \*name | - | - | - | - |
| <a name="arm_237"></a> [237](#arm_237) | fremovexattr | [man/](https://man7.org/linux/man-pages/man2/fremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfremovexattr\b) | 0xed | int fd | const char \*name | - | - | - | - |
| <a name="arm_238"></a> [238](#arm_238) | tkill | [man/](https://man7.org/linux/man-pages/man2/tkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btkill\b) | 0xee | pid\_t pid | int sig | - | - | - | - |
| <a name="arm_239"></a> [239](#arm_239) | sendfile64 | [man/](https://man7.org/linux/man-pages/man2/sendfile64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendfile64\b) | 0xef | int out\_fd | int in\_fd | loff\_t \*offset | size\_t count | - | - |
| <a name="arm_240"></a> [240](#arm_240) | futex | [man/](https://man7.org/linux/man-pages/man2/futex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutex\b) | 0xf0 | u32 \*uaddr | int op | u32 val | const struct \_\_kernel\_timespec \*utime | u32 \*uaddr2 | u32 val3 |
| <a name="arm_241"></a> [241](#arm_241) | sched_setaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_setaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setaffinity\b) | 0xf1 | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="arm_242"></a> [242](#arm_242) | sched_getaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_getaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getaffinity\b) | 0xf2 | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="arm_243"></a> [243](#arm_243) | io_setup | [man/](https://man7.org/linux/man-pages/man2/io_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_setup\b) | 0xf3 | unsigned nr\_reqs | aio\_context\_t \*ctx | - | - | - | - |
| <a name="arm_244"></a> [244](#arm_244) | io_destroy | [man/](https://man7.org/linux/man-pages/man2/io_destroy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_destroy\b) | 0xf4 | aio\_context\_t ctx | - | - | - | - | - |
| <a name="arm_245"></a> [245](#arm_245) | io_getevents | [man/](https://man7.org/linux/man-pages/man2/io_getevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_getevents\b) | 0xf5 | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | - |
| <a name="arm_246"></a> [246](#arm_246) | io_submit | [man/](https://man7.org/linux/man-pages/man2/io_submit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_submit\b) | 0xf6 | aio\_context\_t | long | struct iocb \* \* | - | - | - |
| <a name="arm_247"></a> [247](#arm_247) | io_cancel | [man/](https://man7.org/linux/man-pages/man2/io_cancel.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_cancel\b) | 0xf7 | aio\_context\_t ctx\_id | struct iocb \*iocb | struct io\_event \*result | - | - | - |
| <a name="arm_248"></a> [248](#arm_248) | exit_group | [man/](https://man7.org/linux/man-pages/man2/exit_group.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit_group\b) | 0xf8 | int error\_code | - | - | - | - | - |
| <a name="arm_249"></a> [249](#arm_249) | lookup_dcookie | [man/](https://man7.org/linux/man-pages/man2/lookup_dcookie.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blookup_dcookie\b) | 0xf9 | ? | ? | ? | ? | ? | ? |
| <a name="arm_250"></a> [250](#arm_250) | epoll_create | [man/](https://man7.org/linux/man-pages/man2/epoll_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_create\b) | 0xfa | int size | - | - | - | - | - |
| <a name="arm_251"></a> [251](#arm_251) | epoll_ctl | [man/](https://man7.org/linux/man-pages/man2/epoll_ctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_ctl\b) | 0xfb | int epfd | int op | int fd | struct epoll\_event \*event | - | - |
| <a name="arm_252"></a> [252](#arm_252) | epoll_wait | [man/](https://man7.org/linux/man-pages/man2/epoll_wait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_wait\b) | 0xfc | int epfd | struct epoll\_event \*events | int maxevents | int timeout | - | - |
| <a name="arm_253"></a> [253](#arm_253) | remap_file_pages | [man/](https://man7.org/linux/man-pages/man2/remap_file_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremap_file_pages\b) | 0xfd | unsigned long start | unsigned long size | unsigned long prot | unsigned long pgoff | unsigned long flags | - |
| <a name="arm_254"></a> [254](#arm_254) | *not implemented* | | 0xfe ||
| <a name="arm_255"></a> [255](#arm_255) | *not implemented* | | 0xff ||
| <a name="arm_256"></a> [256](#arm_256) | set_tid_address | [man/](https://man7.org/linux/man-pages/man2/set_tid_address.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_tid_address\b) | 0x100 | int \*tidptr | - | - | - | - | - |
| <a name="arm_257"></a> [257](#arm_257) | timer_create | [man/](https://man7.org/linux/man-pages/man2/timer_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_create\b) | 0x101 | clockid\_t which\_clock | struct sigevent \*timer\_event\_spec | timer\_t \* created\_timer\_id | - | - | - |
| <a name="arm_258"></a> [258](#arm_258) | timer_settime | [man/](https://man7.org/linux/man-pages/man2/timer_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_settime\b) | 0x102 | timer\_t timer\_id | int flags | const struct \_\_kernel\_itimerspec \*new\_setting | struct \_\_kernel\_itimerspec \*old\_setting | - | - |
| <a name="arm_259"></a> [259](#arm_259) | timer_gettime | [man/](https://man7.org/linux/man-pages/man2/timer_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_gettime\b) | 0x103 | timer\_t timer\_id | struct \_\_kernel\_itimerspec \*setting | - | - | - | - |
| <a name="arm_260"></a> [260](#arm_260) | timer_getoverrun | [man/](https://man7.org/linux/man-pages/man2/timer_getoverrun.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_getoverrun\b) | 0x104 | timer\_t timer\_id | - | - | - | - | - |
| <a name="arm_261"></a> [261](#arm_261) | timer_delete | [man/](https://man7.org/linux/man-pages/man2/timer_delete.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_delete\b) | 0x105 | timer\_t timer\_id | - | - | - | - | - |
| <a name="arm_262"></a> [262](#arm_262) | clock_settime | [man/](https://man7.org/linux/man-pages/man2/clock_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_settime\b) | 0x106 | clockid\_t which\_clock | const struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="arm_263"></a> [263](#arm_263) | clock_gettime | [man/](https://man7.org/linux/man-pages/man2/clock_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_gettime\b) | 0x107 | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="arm_264"></a> [264](#arm_264) | clock_getres | [man/](https://man7.org/linux/man-pages/man2/clock_getres.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_getres\b) | 0x108 | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="arm_265"></a> [265](#arm_265) | clock_nanosleep | [man/](https://man7.org/linux/man-pages/man2/clock_nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_nanosleep\b) | 0x109 | clockid\_t which\_clock | int flags | const struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - |
| <a name="arm_266"></a> [266](#arm_266) | statfs64 | [man/](https://man7.org/linux/man-pages/man2/statfs64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatfs64\b) | 0x10a | const char \*path | size\_t sz | struct statfs64 \*buf | - | - | - |
| <a name="arm_267"></a> [267](#arm_267) | fstatfs64 | [man/](https://man7.org/linux/man-pages/man2/fstatfs64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatfs64\b) | 0x10b | unsigned int fd | size\_t sz | struct statfs64 \*buf | - | - | - |
| <a name="arm_268"></a> [268](#arm_268) | tgkill | [man/](https://man7.org/linux/man-pages/man2/tgkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btgkill\b) | 0x10c | pid\_t tgid | pid\_t pid | int sig | - | - | - |
| <a name="arm_269"></a> [269](#arm_269) | utimes | [man/](https://man7.org/linux/man-pages/man2/utimes.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimes\b) | 0x10d | char \*filename | struct \_\_kernel\_old\_timeval \*utimes | - | - | - | - |
| <a name="arm_270"></a> [270](#arm_270) | arm_fadvise64_64 | [man/](https://man7.org/linux/man-pages/man2/arm_fadvise64_64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\barm_fadvise64_64\b) | 0x10e | ? | ? | ? | ? | ? | ? |
| <a name="arm_271"></a> [271](#arm_271) | pciconfig_iobase | [man/](https://man7.org/linux/man-pages/man2/pciconfig_iobase.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpciconfig_iobase\b) | 0x10f | long which | unsigned long bus | unsigned long devfn | - | - | - |
| <a name="arm_272"></a> [272](#arm_272) | pciconfig_read | [man/](https://man7.org/linux/man-pages/man2/pciconfig_read.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpciconfig_read\b) | 0x110 | unsigned long bus | unsigned long dfn | unsigned long off | unsigned long len | void \*buf | - |
| <a name="arm_273"></a> [273](#arm_273) | pciconfig_write | [man/](https://man7.org/linux/man-pages/man2/pciconfig_write.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpciconfig_write\b) | 0x111 | unsigned long bus | unsigned long dfn | unsigned long off | unsigned long len | void \*buf | - |
| <a name="arm_274"></a> [274](#arm_274) | mq_open | [man/](https://man7.org/linux/man-pages/man2/mq_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_open\b) | 0x112 | const char \*name | int oflag | umode\_t mode | struct mq\_attr \*attr | - | - |
| <a name="arm_275"></a> [275](#arm_275) | mq_unlink | [man/](https://man7.org/linux/man-pages/man2/mq_unlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_unlink\b) | 0x113 | const char \*name | - | - | - | - | - |
| <a name="arm_276"></a> [276](#arm_276) | mq_timedsend | [man/](https://man7.org/linux/man-pages/man2/mq_timedsend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedsend\b) | 0x114 | mqd\_t mqdes | const char \*msg\_ptr | size\_t msg\_len | unsigned int msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="arm_277"></a> [277](#arm_277) | mq_timedreceive | [man/](https://man7.org/linux/man-pages/man2/mq_timedreceive.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedreceive\b) | 0x115 | mqd\_t mqdes | char \*msg\_ptr | size\_t msg\_len | unsigned int \*msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="arm_278"></a> [278](#arm_278) | mq_notify | [man/](https://man7.org/linux/man-pages/man2/mq_notify.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_notify\b) | 0x116 | mqd\_t mqdes | const struct sigevent \*notification | - | - | - | - |
| <a name="arm_279"></a> [279](#arm_279) | mq_getsetattr | [man/](https://man7.org/linux/man-pages/man2/mq_getsetattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_getsetattr\b) | 0x117 | mqd\_t mqdes | const struct mq\_attr \*mqstat | struct mq\_attr \*omqstat | - | - | - |
| <a name="arm_280"></a> [280](#arm_280) | waitid | [man/](https://man7.org/linux/man-pages/man2/waitid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwaitid\b) | 0x118 | int which | pid\_t pid | struct siginfo \*infop | int options | struct rusage \*ru | - |
| <a name="arm_281"></a> [281](#arm_281) | socket | [man/](https://man7.org/linux/man-pages/man2/socket.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocket\b) | 0x119 | int | int | int | - | - | - |
| <a name="arm_282"></a> [282](#arm_282) | bind | [man/](https://man7.org/linux/man-pages/man2/bind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbind\b) | 0x11a | int | struct sockaddr \* | int | - | - | - |
| <a name="arm_283"></a> [283](#arm_283) | connect | [man/](https://man7.org/linux/man-pages/man2/connect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bconnect\b) | 0x11b | int | struct sockaddr \* | int | - | - | - |
| <a name="arm_284"></a> [284](#arm_284) | listen | [man/](https://man7.org/linux/man-pages/man2/listen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blisten\b) | 0x11c | int | int | - | - | - | - |
| <a name="arm_285"></a> [285](#arm_285) | accept | [man/](https://man7.org/linux/man-pages/man2/accept.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccept\b) | 0x11d | int | struct sockaddr \* | int \* | - | - | - |
| <a name="arm_286"></a> [286](#arm_286) | getsockname | [man/](https://man7.org/linux/man-pages/man2/getsockname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockname\b) | 0x11e | int | struct sockaddr \* | int \* | - | - | - |
| <a name="arm_287"></a> [287](#arm_287) | getpeername | [man/](https://man7.org/linux/man-pages/man2/getpeername.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpeername\b) | 0x11f | int | struct sockaddr \* | int \* | - | - | - |
| <a name="arm_288"></a> [288](#arm_288) | socketpair | [man/](https://man7.org/linux/man-pages/man2/socketpair.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocketpair\b) | 0x120 | int | int | int | int \* | - | - |
| <a name="arm_289"></a> [289](#arm_289) | send | [man/](https://man7.org/linux/man-pages/man2/send.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsend\b) | 0x121 | int | void \* | size\_t | unsigned | - | - |
| <a name="arm_290"></a> [290](#arm_290) | sendto | [man/](https://man7.org/linux/man-pages/man2/sendto.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendto\b) | 0x122 | int | void \* | size\_t | unsigned | struct sockaddr \* | int |
| <a name="arm_291"></a> [291](#arm_291) | recv | [man/](https://man7.org/linux/man-pages/man2/recv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecv\b) | 0x123 | int | void \* | size\_t | unsigned | - | - |
| <a name="arm_292"></a> [292](#arm_292) | recvfrom | [man/](https://man7.org/linux/man-pages/man2/recvfrom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvfrom\b) | 0x124 | int | void \* | size\_t | unsigned | struct sockaddr \* | int \* |
| <a name="arm_293"></a> [293](#arm_293) | shutdown | [man/](https://man7.org/linux/man-pages/man2/shutdown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshutdown\b) | 0x125 | int | int | - | - | - | - |
| <a name="arm_294"></a> [294](#arm_294) | setsockopt | [man/](https://man7.org/linux/man-pages/man2/setsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsockopt\b) | 0x126 | int fd | int level | int optname | char \*optval | int optlen | - |
| <a name="arm_295"></a> [295](#arm_295) | getsockopt | [man/](https://man7.org/linux/man-pages/man2/getsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockopt\b) | 0x127 | int fd | int level | int optname | char \*optval | int \*optlen | - |
| <a name="arm_296"></a> [296](#arm_296) | sendmsg | [man/](https://man7.org/linux/man-pages/man2/sendmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmsg\b) | 0x128 | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="arm_297"></a> [297](#arm_297) | recvmsg | [man/](https://man7.org/linux/man-pages/man2/recvmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmsg\b) | 0x129 | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="arm_298"></a> [298](#arm_298) | semop | [man/](https://man7.org/linux/man-pages/man2/semop.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemop\b) | 0x12a | int semid | struct sembuf \*sops | unsigned nsops | - | - | - |
| <a name="arm_299"></a> [299](#arm_299) | semget | [man/](https://man7.org/linux/man-pages/man2/semget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemget\b) | 0x12b | key\_t key | int nsems | int semflg | - | - | - |
| <a name="arm_300"></a> [300](#arm_300) | semctl | [man/](https://man7.org/linux/man-pages/man2/semctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemctl\b) | 0x12c | int semid | int semnum | int cmd | unsigned long arg | - | - |
| <a name="arm_301"></a> [301](#arm_301) | msgsnd | [man/](https://man7.org/linux/man-pages/man2/msgsnd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgsnd\b) | 0x12d | int msqid | struct msgbuf \*msgp | size\_t msgsz | int msgflg | - | - |
| <a name="arm_302"></a> [302](#arm_302) | msgrcv | [man/](https://man7.org/linux/man-pages/man2/msgrcv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgrcv\b) | 0x12e | int msqid | struct msgbuf \*msgp | size\_t msgsz | long msgtyp | int msgflg | - |
| <a name="arm_303"></a> [303](#arm_303) | msgget | [man/](https://man7.org/linux/man-pages/man2/msgget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgget\b) | 0x12f | key\_t key | int msgflg | - | - | - | - |
| <a name="arm_304"></a> [304](#arm_304) | msgctl | [man/](https://man7.org/linux/man-pages/man2/msgctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgctl\b) | 0x130 | int msqid | int cmd | struct msqid\_ds \*buf | - | - | - |
| <a name="arm_305"></a> [305](#arm_305) | shmat | [man/](https://man7.org/linux/man-pages/man2/shmat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmat\b) | 0x131 | int shmid | char \*shmaddr | int shmflg | - | - | - |
| <a name="arm_306"></a> [306](#arm_306) | shmdt | [man/](https://man7.org/linux/man-pages/man2/shmdt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmdt\b) | 0x132 | char \*shmaddr | - | - | - | - | - |
| <a name="arm_307"></a> [307](#arm_307) | shmget | [man/](https://man7.org/linux/man-pages/man2/shmget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmget\b) | 0x133 | key\_t key | size\_t size | int flag | - | - | - |
| <a name="arm_308"></a> [308](#arm_308) | shmctl | [man/](https://man7.org/linux/man-pages/man2/shmctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmctl\b) | 0x134 | int shmid | int cmd | struct shmid\_ds \*buf | - | - | - |
| <a name="arm_309"></a> [309](#arm_309) | add_key | [man/](https://man7.org/linux/man-pages/man2/add_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badd_key\b) | 0x135 | const char \*\_type | const char \*\_description | const void \*\_payload | size\_t plen | key\_serial\_t destringid | - |
| <a name="arm_310"></a> [310](#arm_310) | request_key | [man/](https://man7.org/linux/man-pages/man2/request_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brequest_key\b) | 0x136 | const char \*\_type | const char \*\_description | const char \*\_callout\_info | key\_serial\_t destringid | - | - |
| <a name="arm_311"></a> [311](#arm_311) | keyctl | [man/](https://man7.org/linux/man-pages/man2/keyctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkeyctl\b) | 0x137 | int cmd | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="arm_312"></a> [312](#arm_312) | semtimedop | [man/](https://man7.org/linux/man-pages/man2/semtimedop.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemtimedop\b) | 0x138 | int semid | struct sembuf \*sops | unsigned nsops | const struct \_\_kernel\_timespec \*timeout | - | - |
| <a name="arm_313"></a> [313](#arm_313) | vserver | [man/](https://man7.org/linux/man-pages/man2/vserver.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvserver\b) | 0x139 | ? | ? | ? | ? | ? | ? |
| <a name="arm_314"></a> [314](#arm_314) | ioprio_set | [man/](https://man7.org/linux/man-pages/man2/ioprio_set.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_set\b) | 0x13a | int which | int who | int ioprio | - | - | - |
| <a name="arm_315"></a> [315](#arm_315) | ioprio_get | [man/](https://man7.org/linux/man-pages/man2/ioprio_get.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_get\b) | 0x13b | int which | int who | - | - | - | - |
| <a name="arm_316"></a> [316](#arm_316) | inotify_init | [man/](https://man7.org/linux/man-pages/man2/inotify_init.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_init\b) | 0x13c | - | - | - | - | - | - |
| <a name="arm_317"></a> [317](#arm_317) | inotify_add_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_add_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_add_watch\b) | 0x13d | int fd | const char \*path | u32 mask | - | - | - |
| <a name="arm_318"></a> [318](#arm_318) | inotify_rm_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_rm_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_rm_watch\b) | 0x13e | int fd | \_\_s32 wd | - | - | - | - |
| <a name="arm_319"></a> [319](#arm_319) | mbind | [man/](https://man7.org/linux/man-pages/man2/mbind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmbind\b) | 0x13f | unsigned long start | unsigned long len | unsigned long mode | const unsigned long \*nmask | unsigned long maxnode | unsigned flags |
| <a name="arm_320"></a> [320](#arm_320) | get_mempolicy | [man/](https://man7.org/linux/man-pages/man2/get_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_mempolicy\b) | 0x140 | int \*policy | unsigned long \*nmask | unsigned long maxnode | unsigned long addr | unsigned long flags | - |
| <a name="arm_321"></a> [321](#arm_321) | set_mempolicy | [man/](https://man7.org/linux/man-pages/man2/set_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_mempolicy\b) | 0x141 | int mode | const unsigned long \*nmask | unsigned long maxnode | - | - | - |
| <a name="arm_322"></a> [322](#arm_322) | openat | [man/](https://man7.org/linux/man-pages/man2/openat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopenat\b) | 0x142 | int dfd | const char \*filename | int flags | umode\_t mode | - | - |
| <a name="arm_323"></a> [323](#arm_323) | mkdirat | [man/](https://man7.org/linux/man-pages/man2/mkdirat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmkdirat\b) | 0x143 | int dfd | const char \* pathname | umode\_t mode | - | - | - |
| <a name="arm_324"></a> [324](#arm_324) | mknodat | [man/](https://man7.org/linux/man-pages/man2/mknodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmknodat\b) | 0x144 | int dfd | const char \* filename | umode\_t mode | unsigned dev | - | - |
| <a name="arm_325"></a> [325](#arm_325) | fchownat | [man/](https://man7.org/linux/man-pages/man2/fchownat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchownat\b) | 0x145 | int dfd | const char \*filename | uid\_t user | gid\_t group | int flag | - |
| <a name="arm_326"></a> [326](#arm_326) | futimesat | [man/](https://man7.org/linux/man-pages/man2/futimesat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutimesat\b) | 0x146 | int dfd | const char \*filename | struct \_\_kernel\_old\_timeval \*utimes | - | - | - |
| <a name="arm_327"></a> [327](#arm_327) | fstatat64 | [man/](https://man7.org/linux/man-pages/man2/fstatat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatat64\b) | 0x147 | int dfd | const char \*filename | struct stat64 \*statbuf | int flag | - | - |
| <a name="arm_328"></a> [328](#arm_328) | unlinkat | [man/](https://man7.org/linux/man-pages/man2/unlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunlinkat\b) | 0x148 | int dfd | const char \* pathname | int flag | - | - | - |
| <a name="arm_329"></a> [329](#arm_329) | renameat | [man/](https://man7.org/linux/man-pages/man2/renameat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat\b) | 0x149 | int olddfd | const char \* oldname | int newdfd | const char \* newname | - | - |
| <a name="arm_330"></a> [330](#arm_330) | linkat | [man/](https://man7.org/linux/man-pages/man2/linkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blinkat\b) | 0x14a | int olddfd | const char \*oldname | int newdfd | const char \*newname | int flags | - |
| <a name="arm_331"></a> [331](#arm_331) | symlinkat | [man/](https://man7.org/linux/man-pages/man2/symlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsymlinkat\b) | 0x14b | const char \* oldname | int newdfd | const char \* newname | - | - | - |
| <a name="arm_332"></a> [332](#arm_332) | readlinkat | [man/](https://man7.org/linux/man-pages/man2/readlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadlinkat\b) | 0x14c | int dfd | const char \*path | char \*buf | int bufsiz | - | - |
| <a name="arm_333"></a> [333](#arm_333) | fchmodat | [man/](https://man7.org/linux/man-pages/man2/fchmodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmodat\b) | 0x14d | int dfd | const char \*filename | umode\_t mode | - | - | - |
| <a name="arm_334"></a> [334](#arm_334) | faccessat | [man/](https://man7.org/linux/man-pages/man2/faccessat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat\b) | 0x14e | int dfd | const char \*filename | int mode | - | - | - |
| <a name="arm_335"></a> [335](#arm_335) | pselect6 | [man/](https://man7.org/linux/man-pages/man2/pselect6.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpselect6\b) | 0x14f | int | fd\_set \* | fd\_set \* | fd\_set \* | struct \_\_kernel\_timespec \* | void \* |
| <a name="arm_336"></a> [336](#arm_336) | ppoll | [man/](https://man7.org/linux/man-pages/man2/ppoll.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bppoll\b) | 0x150 | struct pollfd \* | unsigned int | struct \_\_kernel\_timespec \* | const sigset\_t \* | size\_t | - |
| <a name="arm_337"></a> [337](#arm_337) | unshare | [man/](https://man7.org/linux/man-pages/man2/unshare.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunshare\b) | 0x151 | unsigned long unshare\_flags | - | - | - | - | - |
| <a name="arm_338"></a> [338](#arm_338) | set_robust_list | [man/](https://man7.org/linux/man-pages/man2/set_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_robust_list\b) | 0x152 | struct robust\_list\_head \*head | size\_t len | - | - | - | - |
| <a name="arm_339"></a> [339](#arm_339) | get_robust_list | [man/](https://man7.org/linux/man-pages/man2/get_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_robust_list\b) | 0x153 | int pid | struct robust\_list\_head \* \*head\_ptr | size\_t \*len\_ptr | - | - | - |
| <a name="arm_340"></a> [340](#arm_340) | splice | [man/](https://man7.org/linux/man-pages/man2/splice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsplice\b) | 0x154 | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="arm_341"></a> [341](#arm_341) | arm_sync_file_range | [man/](https://man7.org/linux/man-pages/man2/arm_sync_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\barm_sync_file_range\b) | 0x155 | ? | ? | ? | ? | ? | ? |
| <a name="arm_341"></a> [341](#arm_341) | sync_file_range2 | [man/](https://man7.org/linux/man-pages/man2/sync_file_range2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync_file_range2\b) | 0x155 | int fd | unsigned int flags | loff\_t offset | loff\_t nbytes | - | - |
| <a name="arm_342"></a> [342](#arm_342) | tee | [man/](https://man7.org/linux/man-pages/man2/tee.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btee\b) | 0x156 | int fdin | int fdout | size\_t len | unsigned int flags | - | - |
| <a name="arm_343"></a> [343](#arm_343) | vmsplice | [man/](https://man7.org/linux/man-pages/man2/vmsplice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvmsplice\b) | 0x157 | int fd | const struct iovec \*iov | unsigned long nr\_segs | unsigned int flags | - | - |
| <a name="arm_344"></a> [344](#arm_344) | move_pages | [man/](https://man7.org/linux/man-pages/man2/move_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_pages\b) | 0x158 | pid\_t pid | unsigned long nr\_pages | const void \* \*pages | const int \*nodes | int \*status | int flags |
| <a name="arm_345"></a> [345](#arm_345) | getcpu | [man/](https://man7.org/linux/man-pages/man2/getcpu.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcpu\b) | 0x159 | unsigned \*cpu | unsigned \*node | struct getcpu\_cache \*cache | - | - | - |
| <a name="arm_346"></a> [346](#arm_346) | epoll_pwait | [man/](https://man7.org/linux/man-pages/man2/epoll_pwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_pwait\b) | 0x15a | int epfd | struct epoll\_event \*events | int maxevents | int timeout | const sigset\_t \*sigmask | size\_t sigsetsize |
| <a name="arm_347"></a> [347](#arm_347) | kexec_load | [man/](https://man7.org/linux/man-pages/man2/kexec_load.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkexec_load\b) | 0x15b | unsigned long entry | unsigned long nr\_segments | struct kexec\_segment \*segments | unsigned long flags | - | - |
| <a name="arm_348"></a> [348](#arm_348) | utimensat | [man/](https://man7.org/linux/man-pages/man2/utimensat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimensat\b) | 0x15c | int dfd | const char \*filename | struct \_\_kernel\_timespec \*utimes | int flags | - | - |
| <a name="arm_349"></a> [349](#arm_349) | signalfd | [man/](https://man7.org/linux/man-pages/man2/signalfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignalfd\b) | 0x15d | int ufd | sigset\_t \*user\_mask | size\_t sizemask | - | - | - |
| <a name="arm_350"></a> [350](#arm_350) | timerfd_create | [man/](https://man7.org/linux/man-pages/man2/timerfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_create\b) | 0x15e | int clockid | int flags | - | - | - | - |
| <a name="arm_351"></a> [351](#arm_351) | eventfd | [man/](https://man7.org/linux/man-pages/man2/eventfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\beventfd\b) | 0x15f | unsigned int count | - | - | - | - | - |
| <a name="arm_352"></a> [352](#arm_352) | fallocate | [man/](https://man7.org/linux/man-pages/man2/fallocate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfallocate\b) | 0x160 | int fd | int mode | loff\_t offset | loff\_t len | - | - |
| <a name="arm_353"></a> [353](#arm_353) | timerfd_settime | [man/](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_settime\b) | 0x161 | int ufd | int flags | const struct \_\_kernel\_itimerspec \*utmr | struct \_\_kernel\_itimerspec \*otmr | - | - |
| <a name="arm_354"></a> [354](#arm_354) | timerfd_gettime | [man/](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_gettime\b) | 0x162 | int ufd | struct \_\_kernel\_itimerspec \*otmr | - | - | - | - |
| <a name="arm_355"></a> [355](#arm_355) | signalfd4 | [man/](https://man7.org/linux/man-pages/man2/signalfd4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignalfd4\b) | 0x163 | int ufd | sigset\_t \*user\_mask | size\_t sizemask | int flags | - | - |
| <a name="arm_356"></a> [356](#arm_356) | eventfd2 | [man/](https://man7.org/linux/man-pages/man2/eventfd2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\beventfd2\b) | 0x164 | unsigned int count | int flags | - | - | - | - |
| <a name="arm_357"></a> [357](#arm_357) | epoll_create1 | [man/](https://man7.org/linux/man-pages/man2/epoll_create1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_create1\b) | 0x165 | int flags | - | - | - | - | - |
| <a name="arm_358"></a> [358](#arm_358) | dup3 | [man/](https://man7.org/linux/man-pages/man2/dup3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup3\b) | 0x166 | unsigned int oldfd | unsigned int newfd | int flags | - | - | - |
| <a name="arm_359"></a> [359](#arm_359) | pipe2 | [man/](https://man7.org/linux/man-pages/man2/pipe2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpipe2\b) | 0x167 | int \*fildes | int flags | - | - | - | - |
| <a name="arm_360"></a> [360](#arm_360) | inotify_init1 | [man/](https://man7.org/linux/man-pages/man2/inotify_init1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_init1\b) | 0x168 | int flags | - | - | - | - | - |
| <a name="arm_361"></a> [361](#arm_361) | preadv | [man/](https://man7.org/linux/man-pages/man2/preadv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv\b) | 0x169 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="arm_362"></a> [362](#arm_362) | pwritev | [man/](https://man7.org/linux/man-pages/man2/pwritev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev\b) | 0x16a | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="arm_363"></a> [363](#arm_363) | rt_tgsigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_tgsigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_tgsigqueueinfo\b) | 0x16b | pid\_t tgid | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - |
| <a name="arm_364"></a> [364](#arm_364) | perf_event_open | [man/](https://man7.org/linux/man-pages/man2/perf_event_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bperf_event_open\b) | 0x16c | struct perf\_event\_attr \*attr\_uptr | pid\_t pid | int cpu | int group\_fd | unsigned long flags | - |
| <a name="arm_365"></a> [365](#arm_365) | recvmmsg | [man/](https://man7.org/linux/man-pages/man2/recvmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmmsg\b) | 0x16d | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | struct \_\_kernel\_timespec \*timeout | - |
| <a name="arm_366"></a> [366](#arm_366) | accept4 | [man/](https://man7.org/linux/man-pages/man2/accept4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccept4\b) | 0x16e | int | struct sockaddr \* | int \* | int | - | - |
| <a name="arm_367"></a> [367](#arm_367) | fanotify_init | [man/](https://man7.org/linux/man-pages/man2/fanotify_init.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_init\b) | 0x16f | unsigned int flags | unsigned int event\_f\_flags | - | - | - | - |
| <a name="arm_368"></a> [368](#arm_368) | fanotify_mark | [man/](https://man7.org/linux/man-pages/man2/fanotify_mark.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_mark\b) | 0x170 | int fanotify\_fd | unsigned int flags | u64 mask | int fd | const char \*pathname | - |
| <a name="arm_369"></a> [369](#arm_369) | prlimit64 | [man/](https://man7.org/linux/man-pages/man2/prlimit64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprlimit64\b) | 0x171 | pid\_t pid | unsigned int resource | const struct rlimit64 \*new\_rlim | struct rlimit64 \*old\_rlim | - | - |
| <a name="arm_370"></a> [370](#arm_370) | name_to_handle_at | [man/](https://man7.org/linux/man-pages/man2/name_to_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bname_to_handle_at\b) | 0x172 | int dfd | const char \*name | struct file\_handle \*handle | void \*mnt\_id | int flag | - |
| <a name="arm_371"></a> [371](#arm_371) | open_by_handle_at | [man/](https://man7.org/linux/man-pages/man2/open_by_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_by_handle_at\b) | 0x173 | int mountdirfd | struct file\_handle \*handle | int flags | - | - | - |
| <a name="arm_372"></a> [372](#arm_372) | clock_adjtime | [man/](https://man7.org/linux/man-pages/man2/clock_adjtime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_adjtime\b) | 0x174 | clockid\_t which\_clock | struct \_\_kernel\_timex \*tx | - | - | - | - |
| <a name="arm_373"></a> [373](#arm_373) | syncfs | [man/](https://man7.org/linux/man-pages/man2/syncfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyncfs\b) | 0x175 | int fd | - | - | - | - | - |
| <a name="arm_374"></a> [374](#arm_374) | sendmmsg | [man/](https://man7.org/linux/man-pages/man2/sendmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmmsg\b) | 0x176 | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | - | - |
| <a name="arm_375"></a> [375](#arm_375) | setns | [man/](https://man7.org/linux/man-pages/man2/setns.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetns\b) | 0x177 | int fd | int nstype | - | - | - | - |
| <a name="arm_376"></a> [376](#arm_376) | process_vm_readv | [man/](https://man7.org/linux/man-pages/man2/process_vm_readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_readv\b) | 0x178 | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="arm_377"></a> [377](#arm_377) | process_vm_writev | [man/](https://man7.org/linux/man-pages/man2/process_vm_writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_writev\b) | 0x179 | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="arm_378"></a> [378](#arm_378) | kcmp | [man/](https://man7.org/linux/man-pages/man2/kcmp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkcmp\b) | 0x17a | pid\_t pid1 | pid\_t pid2 | int type | unsigned long idx1 | unsigned long idx2 | - |
| <a name="arm_379"></a> [379](#arm_379) | finit_module | [man/](https://man7.org/linux/man-pages/man2/finit_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfinit_module\b) | 0x17b | int fd | const char \*uargs | int flags | - | - | - |
| <a name="arm_380"></a> [380](#arm_380) | sched_setattr | [man/](https://man7.org/linux/man-pages/man2/sched_setattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setattr\b) | 0x17c | pid\_t pid | struct sched\_attr \*attr | unsigned int flags | - | - | - |
| <a name="arm_381"></a> [381](#arm_381) | sched_getattr | [man/](https://man7.org/linux/man-pages/man2/sched_getattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getattr\b) | 0x17d | pid\_t pid | struct sched\_attr \*attr | unsigned int size | unsigned int flags | - | - |
| <a name="arm_382"></a> [382](#arm_382) | renameat2 | [man/](https://man7.org/linux/man-pages/man2/renameat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat2\b) | 0x17e | int olddfd | const char \*oldname | int newdfd | const char \*newname | unsigned int flags | - |
| <a name="arm_383"></a> [383](#arm_383) | seccomp | [man/](https://man7.org/linux/man-pages/man2/seccomp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bseccomp\b) | 0x17f | unsigned int op | unsigned int flags | void \*uargs | - | - | - |
| <a name="arm_384"></a> [384](#arm_384) | getrandom | [man/](https://man7.org/linux/man-pages/man2/getrandom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrandom\b) | 0x180 | char \*buf | size\_t count | unsigned int flags | - | - | - |
| <a name="arm_385"></a> [385](#arm_385) | memfd_create | [man/](https://man7.org/linux/man-pages/man2/memfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmemfd_create\b) | 0x181 | const char \*uname\_ptr | unsigned int flags | - | - | - | - |
| <a name="arm_386"></a> [386](#arm_386) | bpf | [man/](https://man7.org/linux/man-pages/man2/bpf.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbpf\b) | 0x182 | int cmd | union bpf\_attr \*attr | unsigned int size | - | - | - |
| <a name="arm_387"></a> [387](#arm_387) | execveat | [man/](https://man7.org/linux/man-pages/man2/execveat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecveat\b) | 0x183 | int dfd | const char \*filename | const char \*const \*argv | const char \*const \*envp | int flags | - |
| <a name="arm_388"></a> [388](#arm_388) | userfaultfd | [man/](https://man7.org/linux/man-pages/man2/userfaultfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buserfaultfd\b) | 0x184 | int flags | - | - | - | - | - |
| <a name="arm_389"></a> [389](#arm_389) | membarrier | [man/](https://man7.org/linux/man-pages/man2/membarrier.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmembarrier\b) | 0x185 | int cmd | unsigned int flags | int cpu\_id | - | - | - |
| <a name="arm_390"></a> [390](#arm_390) | mlock2 | [man/](https://man7.org/linux/man-pages/man2/mlock2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock2\b) | 0x186 | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="arm_391"></a> [391](#arm_391) | copy_file_range | [man/](https://man7.org/linux/man-pages/man2/copy_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcopy_file_range\b) | 0x187 | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="arm_392"></a> [392](#arm_392) | preadv2 | [man/](https://man7.org/linux/man-pages/man2/preadv2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv2\b) | 0x188 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="arm_393"></a> [393](#arm_393) | pwritev2 | [man/](https://man7.org/linux/man-pages/man2/pwritev2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev2\b) | 0x189 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="arm_394"></a> [394](#arm_394) | pkey_mprotect | [man/](https://man7.org/linux/man-pages/man2/pkey_mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_mprotect\b) | 0x18a | unsigned long start | size\_t len | unsigned long prot | int pkey | - | - |
| <a name="arm_395"></a> [395](#arm_395) | pkey_alloc | [man/](https://man7.org/linux/man-pages/man2/pkey_alloc.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_alloc\b) | 0x18b | unsigned long flags | unsigned long init\_val | - | - | - | - |
| <a name="arm_396"></a> [396](#arm_396) | pkey_free | [man/](https://man7.org/linux/man-pages/man2/pkey_free.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_free\b) | 0x18c | int pkey | - | - | - | - | - |
| <a name="arm_397"></a> [397](#arm_397) | statx | [man/](https://man7.org/linux/man-pages/man2/statx.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatx\b) | 0x18d | int dfd | const char \*path | unsigned flags | unsigned mask | struct statx \*buffer | - |
| <a name="arm_398"></a> [398](#arm_398) | rseq | [man/](https://man7.org/linux/man-pages/man2/rseq.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brseq\b) | 0x18e | struct rseq \*rseq | uint32\_t rseq\_len | int flags | uint32\_t sig | - | - |
| <a name="arm_399"></a> [399](#arm_399) | io_pgetevents | [man/](https://man7.org/linux/man-pages/man2/io_pgetevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_pgetevents\b) | 0x18f | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | const struct \_\_aio\_sigset \*sig |
| <a name="arm_400"></a> [400](#arm_400) | migrate_pages | [man/](https://man7.org/linux/man-pages/man2/migrate_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmigrate_pages\b) | 0x190 | pid\_t pid | unsigned long maxnode | const unsigned long \*from | const unsigned long \*to | - | - |
| <a name="arm_401"></a> [401](#arm_401) | kexec_file_load | [man/](https://man7.org/linux/man-pages/man2/kexec_file_load.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkexec_file_load\b) | 0x191 | int kernel\_fd | int initrd\_fd | unsigned long cmdline\_len | const char \*cmdline\_ptr | unsigned long flags | - |
| <a name="arm_402"></a> [402](#arm_402) | *not implemented* | | 0x192 ||
| <a name="arm_403"></a> [403](#arm_403) | clock_gettime64 | [man/](https://man7.org/linux/man-pages/man2/clock_gettime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_gettime64\b) | 0x193 | ? | ? | ? | ? | ? | ? |
| <a name="arm_404"></a> [404](#arm_404) | clock_settime64 | [man/](https://man7.org/linux/man-pages/man2/clock_settime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_settime64\b) | 0x194 | ? | ? | ? | ? | ? | ? |
| <a name="arm_405"></a> [405](#arm_405) | clock_adjtime64 | [man/](https://man7.org/linux/man-pages/man2/clock_adjtime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_adjtime64\b) | 0x195 | ? | ? | ? | ? | ? | ? |
| <a name="arm_406"></a> [406](#arm_406) | clock_getres_time64 | [man/](https://man7.org/linux/man-pages/man2/clock_getres_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_getres_time64\b) | 0x196 | ? | ? | ? | ? | ? | ? |
| <a name="arm_407"></a> [407](#arm_407) | clock_nanosleep_time64 | [man/](https://man7.org/linux/man-pages/man2/clock_nanosleep_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_nanosleep_time64\b) | 0x197 | ? | ? | ? | ? | ? | ? |
| <a name="arm_408"></a> [408](#arm_408) | timer_gettime64 | [man/](https://man7.org/linux/man-pages/man2/timer_gettime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_gettime64\b) | 0x198 | ? | ? | ? | ? | ? | ? |
| <a name="arm_409"></a> [409](#arm_409) | timer_settime64 | [man/](https://man7.org/linux/man-pages/man2/timer_settime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_settime64\b) | 0x199 | ? | ? | ? | ? | ? | ? |
| <a name="arm_410"></a> [410](#arm_410) | timerfd_gettime64 | [man/](https://man7.org/linux/man-pages/man2/timerfd_gettime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_gettime64\b) | 0x19a | ? | ? | ? | ? | ? | ? |
| <a name="arm_411"></a> [411](#arm_411) | timerfd_settime64 | [man/](https://man7.org/linux/man-pages/man2/timerfd_settime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_settime64\b) | 0x19b | ? | ? | ? | ? | ? | ? |
| <a name="arm_412"></a> [412](#arm_412) | utimensat_time64 | [man/](https://man7.org/linux/man-pages/man2/utimensat_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimensat_time64\b) | 0x19c | ? | ? | ? | ? | ? | ? |
| <a name="arm_413"></a> [413](#arm_413) | pselect6_time64 | [man/](https://man7.org/linux/man-pages/man2/pselect6_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpselect6_time64\b) | 0x19d | ? | ? | ? | ? | ? | ? |
| <a name="arm_414"></a> [414](#arm_414) | ppoll_time64 | [man/](https://man7.org/linux/man-pages/man2/ppoll_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bppoll_time64\b) | 0x19e | ? | ? | ? | ? | ? | ? |
| <a name="arm_415"></a> [415](#arm_415) | *not implemented* | | 0x19f ||
| <a name="arm_416"></a> [416](#arm_416) | io_pgetevents_time64 | [man/](https://man7.org/linux/man-pages/man2/io_pgetevents_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_pgetevents_time64\b) | 0x1a0 | ? | ? | ? | ? | ? | ? |
| <a name="arm_417"></a> [417](#arm_417) | recvmmsg_time64 | [man/](https://man7.org/linux/man-pages/man2/recvmmsg_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmmsg_time64\b) | 0x1a1 | ? | ? | ? | ? | ? | ? |
| <a name="arm_418"></a> [418](#arm_418) | mq_timedsend_time64 | [man/](https://man7.org/linux/man-pages/man2/mq_timedsend_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedsend_time64\b) | 0x1a2 | ? | ? | ? | ? | ? | ? |
| <a name="arm_419"></a> [419](#arm_419) | mq_timedreceive_time64 | [man/](https://man7.org/linux/man-pages/man2/mq_timedreceive_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedreceive_time64\b) | 0x1a3 | ? | ? | ? | ? | ? | ? |
| <a name="arm_420"></a> [420](#arm_420) | semtimedop_time64 | [man/](https://man7.org/linux/man-pages/man2/semtimedop_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemtimedop_time64\b) | 0x1a4 | ? | ? | ? | ? | ? | ? |
| <a name="arm_421"></a> [421](#arm_421) | rt_sigtimedwait_time64 | [man/](https://man7.org/linux/man-pages/man2/rt_sigtimedwait_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigtimedwait_time64\b) | 0x1a5 | ? | ? | ? | ? | ? | ? |
| <a name="arm_422"></a> [422](#arm_422) | futex_time64 | [man/](https://man7.org/linux/man-pages/man2/futex_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutex_time64\b) | 0x1a6 | ? | ? | ? | ? | ? | ? |
| <a name="arm_423"></a> [423](#arm_423) | sched_rr_get_interval_time64 | [man/](https://man7.org/linux/man-pages/man2/sched_rr_get_interval_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_rr_get_interval_time64\b) | 0x1a7 | ? | ? | ? | ? | ? | ? |
| <a name="arm_424"></a> [424](#arm_424) | pidfd_send_signal | [man/](https://man7.org/linux/man-pages/man2/pidfd_send_signal.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_send_signal\b) | 0x1a8 | int pidfd | int sig | siginfo\_t \*info | unsigned int flags | - | - |
| <a name="arm_425"></a> [425](#arm_425) | io_uring_setup | [man/](https://man7.org/linux/man-pages/man2/io_uring_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_setup\b) | 0x1a9 | u32 entries | struct io\_uring\_params \*p | - | - | - | - |
| <a name="arm_426"></a> [426](#arm_426) | io_uring_enter | [man/](https://man7.org/linux/man-pages/man2/io_uring_enter.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_enter\b) | 0x1aa | unsigned int fd | u32 to\_submit | u32 min\_complete | u32 flags | const void \*argp | size\_t argsz |
| <a name="arm_427"></a> [427](#arm_427) | io_uring_register | [man/](https://man7.org/linux/man-pages/man2/io_uring_register.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_register\b) | 0x1ab | unsigned int fd | unsigned int op | void \*arg | unsigned int nr\_args | - | - |
| <a name="arm_428"></a> [428](#arm_428) | open_tree | [man/](https://man7.org/linux/man-pages/man2/open_tree.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_tree\b) | 0x1ac | int dfd | const char \*path | unsigned flags | - | - | - |
| <a name="arm_429"></a> [429](#arm_429) | move_mount | [man/](https://man7.org/linux/man-pages/man2/move_mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_mount\b) | 0x1ad | int from\_dfd | const char \*from\_path | int to\_dfd | const char \*to\_path | unsigned int ms\_flags | - |
| <a name="arm_430"></a> [430](#arm_430) | fsopen | [man/](https://man7.org/linux/man-pages/man2/fsopen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsopen\b) | 0x1ae | const char \*fs\_name | unsigned int flags | - | - | - | - |
| <a name="arm_431"></a> [431](#arm_431) | fsconfig | [man/](https://man7.org/linux/man-pages/man2/fsconfig.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsconfig\b) | 0x1af | int fs\_fd | unsigned int cmd | const char \*key | const void \*value | int aux | - |
| <a name="arm_432"></a> [432](#arm_432) | fsmount | [man/](https://man7.org/linux/man-pages/man2/fsmount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsmount\b) | 0x1b0 | int fs\_fd | unsigned int flags | unsigned int ms\_flags | - | - | - |
| <a name="arm_433"></a> [433](#arm_433) | fspick | [man/](https://man7.org/linux/man-pages/man2/fspick.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfspick\b) | 0x1b1 | int dfd | const char \*path | unsigned int flags | - | - | - |
| <a name="arm_434"></a> [434](#arm_434) | pidfd_open | [man/](https://man7.org/linux/man-pages/man2/pidfd_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_open\b) | 0x1b2 | pid\_t pid | unsigned int flags | - | - | - | - |
| <a name="arm_435"></a> [435](#arm_435) | clone3 | [man/](https://man7.org/linux/man-pages/man2/clone3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone3\b) | 0x1b3 | struct clone\_args \*uargs | size\_t size | - | - | - | - |
| <a name="arm_436"></a> [436](#arm_436) | close_range | [man/](https://man7.org/linux/man-pages/man2/close_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose_range\b) | 0x1b4 | unsigned int fd | unsigned int max\_fd | unsigned int flags | - | - | - |
| <a name="arm_437"></a> [437](#arm_437) | *not implemented* | | 0x1b5 ||
| <a name="arm_438"></a> [438](#arm_438) | *not implemented* | | 0x1b6 ||
| <a name="arm_439"></a> [439](#arm_439) | faccessat2 | [man/](https://man7.org/linux/man-pages/man2/faccessat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat2\b) | 0x1b7 | int dfd | const char \*filename | int mode | int flags | - | - |
| <a name="arm_983041"></a> [983041](#arm_983041) | ARM_breakpoint | [man/](https://man7.org/linux/man-pages/man2/ARM_breakpoint.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bARM_breakpoint\b) | 0xf0001 | ? | ? | ? | ? | ? | ? |
| <a name="arm_983042"></a> [983042](#arm_983042) | ARM_cacheflush | [man/](https://man7.org/linux/man-pages/man2/ARM_cacheflush.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bARM_cacheflush\b) | 0xf0002 | ? | ? | ? | ? | ? | ? |
| <a name="arm_983043"></a> [983043](#arm_983043) | ARM_usr26 | [man/](https://man7.org/linux/man-pages/man2/ARM_usr26.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bARM_usr26\b) | 0xf0003 | ? | ? | ? | ? | ? | ? |
| <a name="arm_983044"></a> [983044](#arm_983044) | ARM_usr32 | [man/](https://man7.org/linux/man-pages/man2/ARM_usr32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bARM_usr32\b) | 0xf0004 | ? | ? | ? | ? | ? | ? |
| <a name="arm_983045"></a> [983045](#arm_983045) | ARM_set_tls | [man/](https://man7.org/linux/man-pages/man2/ARM_set_tls.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bARM_set_tls\b) | 0xf0005 | ? | ? | ? | ? | ? | ? |
| <a name="arm_983046"></a> [983046](#arm_983046) | ARM_get_tls | [man/](https://man7.org/linux/man-pages/man2/ARM_get_tls.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bARM_get_tls\b) | 0xf0006 | ? | ? | ? | ? | ? | ? |

### arm64 (64-bit)

Compiled from [Linux 5.4.0 headers][linux-headers].

| NR | syscall name | references | %x8 | arg0 (%x0) | arg1 (%x1) | arg2 (%x2) | arg3 (%x3) | arg4 (%x4) | arg5 (%x5) |
|:---:|---|:---:|:---:|---|---|---|---|---|---|
| <a name="aarch64_0"></a> [0](#aarch64_0) | io_setup | [man/](https://man7.org/linux/man-pages/man2/io_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_setup\b) | 0x00 | unsigned nr\_reqs | aio\_context\_t \*ctx | - | - | - | - |
| <a name="aarch64_1"></a> [1](#aarch64_1) | io_destroy | [man/](https://man7.org/linux/man-pages/man2/io_destroy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_destroy\b) | 0x01 | aio\_context\_t ctx | - | - | - | - | - |
| <a name="aarch64_2"></a> [2](#aarch64_2) | io_submit | [man/](https://man7.org/linux/man-pages/man2/io_submit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_submit\b) | 0x02 | aio\_context\_t | long | struct iocb \* \* | - | - | - |
| <a name="aarch64_3"></a> [3](#aarch64_3) | io_cancel | [man/](https://man7.org/linux/man-pages/man2/io_cancel.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_cancel\b) | 0x03 | aio\_context\_t ctx\_id | struct iocb \*iocb | struct io\_event \*result | - | - | - |
| <a name="aarch64_4"></a> [4](#aarch64_4) | io_getevents | [man/](https://man7.org/linux/man-pages/man2/io_getevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_getevents\b) | 0x04 | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | - |
| <a name="aarch64_5"></a> [5](#aarch64_5) | setxattr | [man/](https://man7.org/linux/man-pages/man2/setxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetxattr\b) | 0x05 | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="aarch64_6"></a> [6](#aarch64_6) | lsetxattr | [man/](https://man7.org/linux/man-pages/man2/lsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blsetxattr\b) | 0x06 | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="aarch64_7"></a> [7](#aarch64_7) | fsetxattr | [man/](https://man7.org/linux/man-pages/man2/fsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsetxattr\b) | 0x07 | int fd | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="aarch64_8"></a> [8](#aarch64_8) | getxattr | [man/](https://man7.org/linux/man-pages/man2/getxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetxattr\b) | 0x08 | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="aarch64_9"></a> [9](#aarch64_9) | lgetxattr | [man/](https://man7.org/linux/man-pages/man2/lgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blgetxattr\b) | 0x09 | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="aarch64_10"></a> [10](#aarch64_10) | fgetxattr | [man/](https://man7.org/linux/man-pages/man2/fgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfgetxattr\b) | 0x0a | int fd | const char \*name | void \*value | size\_t size | - | - |
| <a name="aarch64_11"></a> [11](#aarch64_11) | listxattr | [man/](https://man7.org/linux/man-pages/man2/listxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blistxattr\b) | 0x0b | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="aarch64_12"></a> [12](#aarch64_12) | llistxattr | [man/](https://man7.org/linux/man-pages/man2/llistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bllistxattr\b) | 0x0c | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="aarch64_13"></a> [13](#aarch64_13) | flistxattr | [man/](https://man7.org/linux/man-pages/man2/flistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflistxattr\b) | 0x0d | int fd | char \*list | size\_t size | - | - | - |
| <a name="aarch64_14"></a> [14](#aarch64_14) | removexattr | [man/](https://man7.org/linux/man-pages/man2/removexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremovexattr\b) | 0x0e | const char \*path | const char \*name | - | - | - | - |
| <a name="aarch64_15"></a> [15](#aarch64_15) | lremovexattr | [man/](https://man7.org/linux/man-pages/man2/lremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blremovexattr\b) | 0x0f | const char \*path | const char \*name | - | - | - | - |
| <a name="aarch64_16"></a> [16](#aarch64_16) | fremovexattr | [man/](https://man7.org/linux/man-pages/man2/fremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfremovexattr\b) | 0x10 | int fd | const char \*name | - | - | - | - |
| <a name="aarch64_17"></a> [17](#aarch64_17) | getcwd | [man/](https://man7.org/linux/man-pages/man2/getcwd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcwd\b) | 0x11 | char \*buf | unsigned long size | - | - | - | - |
| <a name="aarch64_18"></a> [18](#aarch64_18) | lookup_dcookie | [man/](https://man7.org/linux/man-pages/man2/lookup_dcookie.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blookup_dcookie\b) | 0x12 | ? | ? | ? | ? | ? | ? |
| <a name="aarch64_19"></a> [19](#aarch64_19) | eventfd2 | [man/](https://man7.org/linux/man-pages/man2/eventfd2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\beventfd2\b) | 0x13 | unsigned int count | int flags | - | - | - | - |
| <a name="aarch64_20"></a> [20](#aarch64_20) | epoll_create1 | [man/](https://man7.org/linux/man-pages/man2/epoll_create1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_create1\b) | 0x14 | int flags | - | - | - | - | - |
| <a name="aarch64_21"></a> [21](#aarch64_21) | epoll_ctl | [man/](https://man7.org/linux/man-pages/man2/epoll_ctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_ctl\b) | 0x15 | int epfd | int op | int fd | struct epoll\_event \*event | - | - |
| <a name="aarch64_22"></a> [22](#aarch64_22) | epoll_pwait | [man/](https://man7.org/linux/man-pages/man2/epoll_pwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_pwait\b) | 0x16 | int epfd | struct epoll\_event \*events | int maxevents | int timeout | const sigset\_t \*sigmask | size\_t sigsetsize |
| <a name="aarch64_23"></a> [23](#aarch64_23) | dup | [man/](https://man7.org/linux/man-pages/man2/dup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup\b) | 0x17 | unsigned int fildes | - | - | - | - | - |
| <a name="aarch64_24"></a> [24](#aarch64_24) | dup3 | [man/](https://man7.org/linux/man-pages/man2/dup3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup3\b) | 0x18 | unsigned int oldfd | unsigned int newfd | int flags | - | - | - |
| <a name="aarch64_25"></a> [25](#aarch64_25) | fcntl | [man/](https://man7.org/linux/man-pages/man2/fcntl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfcntl\b) | 0x19 | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="aarch64_26"></a> [26](#aarch64_26) | inotify_init1 | [man/](https://man7.org/linux/man-pages/man2/inotify_init1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_init1\b) | 0x1a | int flags | - | - | - | - | - |
| <a name="aarch64_27"></a> [27](#aarch64_27) | inotify_add_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_add_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_add_watch\b) | 0x1b | int fd | const char \*path | u32 mask | - | - | - |
| <a name="aarch64_28"></a> [28](#aarch64_28) | inotify_rm_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_rm_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_rm_watch\b) | 0x1c | int fd | \_\_s32 wd | - | - | - | - |
| <a name="aarch64_29"></a> [29](#aarch64_29) | ioctl | [man/](https://man7.org/linux/man-pages/man2/ioctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioctl\b) | 0x1d | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="aarch64_30"></a> [30](#aarch64_30) | ioprio_set | [man/](https://man7.org/linux/man-pages/man2/ioprio_set.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_set\b) | 0x1e | int which | int who | int ioprio | - | - | - |
| <a name="aarch64_31"></a> [31](#aarch64_31) | ioprio_get | [man/](https://man7.org/linux/man-pages/man2/ioprio_get.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_get\b) | 0x1f | int which | int who | - | - | - | - |
| <a name="aarch64_32"></a> [32](#aarch64_32) | flock | [man/](https://man7.org/linux/man-pages/man2/flock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflock\b) | 0x20 | unsigned int fd | unsigned int cmd | - | - | - | - |
| <a name="aarch64_33"></a> [33](#aarch64_33) | mknodat | [man/](https://man7.org/linux/man-pages/man2/mknodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmknodat\b) | 0x21 | int dfd | const char \* filename | umode\_t mode | unsigned dev | - | - |
| <a name="aarch64_34"></a> [34](#aarch64_34) | mkdirat | [man/](https://man7.org/linux/man-pages/man2/mkdirat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmkdirat\b) | 0x22 | int dfd | const char \* pathname | umode\_t mode | - | - | - |
| <a name="aarch64_35"></a> [35](#aarch64_35) | unlinkat | [man/](https://man7.org/linux/man-pages/man2/unlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunlinkat\b) | 0x23 | int dfd | const char \* pathname | int flag | - | - | - |
| <a name="aarch64_36"></a> [36](#aarch64_36) | symlinkat | [man/](https://man7.org/linux/man-pages/man2/symlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsymlinkat\b) | 0x24 | const char \* oldname | int newdfd | const char \* newname | - | - | - |
| <a name="aarch64_37"></a> [37](#aarch64_37) | linkat | [man/](https://man7.org/linux/man-pages/man2/linkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blinkat\b) | 0x25 | int olddfd | const char \*oldname | int newdfd | const char \*newname | int flags | - |
| <a name="aarch64_38"></a> [38](#aarch64_38) | renameat | [man/](https://man7.org/linux/man-pages/man2/renameat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat\b) | 0x26 | int olddfd | const char \* oldname | int newdfd | const char \* newname | - | - |
| <a name="aarch64_39"></a> [39](#aarch64_39) | umount2 | [man/](https://man7.org/linux/man-pages/man2/umount2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumount2\b) | 0x27 | ? | ? | ? | ? | ? | ? |
| <a name="aarch64_40"></a> [40](#aarch64_40) | mount | [man/](https://man7.org/linux/man-pages/man2/mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmount\b) | 0x28 | char \*dev\_name | char \*dir\_name | char \*type | unsigned long flags | void \*data | - |
| <a name="aarch64_41"></a> [41](#aarch64_41) | pivot_root | [man/](https://man7.org/linux/man-pages/man2/pivot_root.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpivot_root\b) | 0x29 | const char \*new\_root | const char \*put\_old | - | - | - | - |
| <a name="aarch64_42"></a> [42](#aarch64_42) | nfsservctl | [man/](https://man7.org/linux/man-pages/man2/nfsservctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnfsservctl\b) | 0x2a | ? | ? | ? | ? | ? | ? |
| <a name="aarch64_43"></a> [43](#aarch64_43) | statfs | [man/](https://man7.org/linux/man-pages/man2/statfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatfs\b) | 0x2b | const char \* path | struct statfs \*buf | - | - | - | - |
| <a name="aarch64_44"></a> [44](#aarch64_44) | fstatfs | [man/](https://man7.org/linux/man-pages/man2/fstatfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatfs\b) | 0x2c | unsigned int fd | struct statfs \*buf | - | - | - | - |
| <a name="aarch64_45"></a> [45](#aarch64_45) | truncate | [man/](https://man7.org/linux/man-pages/man2/truncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btruncate\b) | 0x2d | const char \*path | long length | - | - | - | - |
| <a name="aarch64_46"></a> [46](#aarch64_46) | ftruncate | [man/](https://man7.org/linux/man-pages/man2/ftruncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bftruncate\b) | 0x2e | unsigned int fd | off\_t length | - | - | - | - |
| <a name="aarch64_47"></a> [47](#aarch64_47) | fallocate | [man/](https://man7.org/linux/man-pages/man2/fallocate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfallocate\b) | 0x2f | int fd | int mode | loff\_t offset | loff\_t len | - | - |
| <a name="aarch64_48"></a> [48](#aarch64_48) | faccessat | [man/](https://man7.org/linux/man-pages/man2/faccessat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat\b) | 0x30 | int dfd | const char \*filename | int mode | - | - | - |
| <a name="aarch64_49"></a> [49](#aarch64_49) | chdir | [man/](https://man7.org/linux/man-pages/man2/chdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchdir\b) | 0x31 | const char \*filename | - | - | - | - | - |
| <a name="aarch64_50"></a> [50](#aarch64_50) | fchdir | [man/](https://man7.org/linux/man-pages/man2/fchdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchdir\b) | 0x32 | unsigned int fd | - | - | - | - | - |
| <a name="aarch64_51"></a> [51](#aarch64_51) | chroot | [man/](https://man7.org/linux/man-pages/man2/chroot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchroot\b) | 0x33 | const char \*filename | - | - | - | - | - |
| <a name="aarch64_52"></a> [52](#aarch64_52) | fchmod | [man/](https://man7.org/linux/man-pages/man2/fchmod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmod\b) | 0x34 | unsigned int fd | umode\_t mode | - | - | - | - |
| <a name="aarch64_53"></a> [53](#aarch64_53) | fchmodat | [man/](https://man7.org/linux/man-pages/man2/fchmodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmodat\b) | 0x35 | int dfd | const char \*filename | umode\_t mode | - | - | - |
| <a name="aarch64_54"></a> [54](#aarch64_54) | fchownat | [man/](https://man7.org/linux/man-pages/man2/fchownat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchownat\b) | 0x36 | int dfd | const char \*filename | uid\_t user | gid\_t group | int flag | - |
| <a name="aarch64_55"></a> [55](#aarch64_55) | fchown | [man/](https://man7.org/linux/man-pages/man2/fchown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchown\b) | 0x37 | unsigned int fd | uid\_t user | gid\_t group | - | - | - |
| <a name="aarch64_56"></a> [56](#aarch64_56) | openat | [man/](https://man7.org/linux/man-pages/man2/openat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopenat\b) | 0x38 | int dfd | const char \*filename | int flags | umode\_t mode | - | - |
| <a name="aarch64_57"></a> [57](#aarch64_57) | close | [man/](https://man7.org/linux/man-pages/man2/close.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose\b) | 0x39 | unsigned int fd | - | - | - | - | - |
| <a name="aarch64_58"></a> [58](#aarch64_58) | vhangup | [man/](https://man7.org/linux/man-pages/man2/vhangup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvhangup\b) | 0x3a | - | - | - | - | - | - |
| <a name="aarch64_59"></a> [59](#aarch64_59) | pipe2 | [man/](https://man7.org/linux/man-pages/man2/pipe2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpipe2\b) | 0x3b | int \*fildes | int flags | - | - | - | - |
| <a name="aarch64_60"></a> [60](#aarch64_60) | quotactl | [man/](https://man7.org/linux/man-pages/man2/quotactl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bquotactl\b) | 0x3c | unsigned int cmd | const char \*special | qid\_t id | void \*addr | - | - |
| <a name="aarch64_61"></a> [61](#aarch64_61) | getdents64 | [man/](https://man7.org/linux/man-pages/man2/getdents64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetdents64\b) | 0x3d | unsigned int fd | struct linux\_dirent64 \*dirent | unsigned int count | - | - | - |
| <a name="aarch64_62"></a> [62](#aarch64_62) | lseek | [man/](https://man7.org/linux/man-pages/man2/lseek.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blseek\b) | 0x3e | unsigned int fd | off\_t offset | unsigned int whence | - | - | - |
| <a name="aarch64_63"></a> [63](#aarch64_63) | read | [man/](https://man7.org/linux/man-pages/man2/read.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bread\b) | 0x3f | unsigned int fd | char \*buf | size\_t count | - | - | - |
| <a name="aarch64_64"></a> [64](#aarch64_64) | write | [man/](https://man7.org/linux/man-pages/man2/write.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwrite\b) | 0x40 | unsigned int fd | const char \*buf | size\_t count | - | - | - |
| <a name="aarch64_65"></a> [65](#aarch64_65) | readv | [man/](https://man7.org/linux/man-pages/man2/readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadv\b) | 0x41 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="aarch64_66"></a> [66](#aarch64_66) | writev | [man/](https://man7.org/linux/man-pages/man2/writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwritev\b) | 0x42 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="aarch64_67"></a> [67](#aarch64_67) | pread64 | [man/](https://man7.org/linux/man-pages/man2/pread64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpread64\b) | 0x43 | unsigned int fd | char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="aarch64_68"></a> [68](#aarch64_68) | pwrite64 | [man/](https://man7.org/linux/man-pages/man2/pwrite64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwrite64\b) | 0x44 | unsigned int fd | const char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="aarch64_69"></a> [69](#aarch64_69) | preadv | [man/](https://man7.org/linux/man-pages/man2/preadv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv\b) | 0x45 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="aarch64_70"></a> [70](#aarch64_70) | pwritev | [man/](https://man7.org/linux/man-pages/man2/pwritev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev\b) | 0x46 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="aarch64_71"></a> [71](#aarch64_71) | sendfile | [man/](https://man7.org/linux/man-pages/man2/sendfile.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendfile\b) | 0x47 | int out\_fd | int in\_fd | off\_t \*offset | size\_t count | - | - |
| <a name="aarch64_72"></a> [72](#aarch64_72) | pselect6 | [man/](https://man7.org/linux/man-pages/man2/pselect6.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpselect6\b) | 0x48 | int | fd\_set \* | fd\_set \* | fd\_set \* | struct \_\_kernel\_timespec \* | void \* |
| <a name="aarch64_73"></a> [73](#aarch64_73) | ppoll | [man/](https://man7.org/linux/man-pages/man2/ppoll.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bppoll\b) | 0x49 | struct pollfd \* | unsigned int | struct \_\_kernel\_timespec \* | const sigset\_t \* | size\_t | - |
| <a name="aarch64_74"></a> [74](#aarch64_74) | signalfd4 | [man/](https://man7.org/linux/man-pages/man2/signalfd4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignalfd4\b) | 0x4a | int ufd | sigset\_t \*user\_mask | size\_t sizemask | int flags | - | - |
| <a name="aarch64_75"></a> [75](#aarch64_75) | vmsplice | [man/](https://man7.org/linux/man-pages/man2/vmsplice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvmsplice\b) | 0x4b | int fd | const struct iovec \*iov | unsigned long nr\_segs | unsigned int flags | - | - |
| <a name="aarch64_76"></a> [76](#aarch64_76) | splice | [man/](https://man7.org/linux/man-pages/man2/splice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsplice\b) | 0x4c | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="aarch64_77"></a> [77](#aarch64_77) | tee | [man/](https://man7.org/linux/man-pages/man2/tee.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btee\b) | 0x4d | int fdin | int fdout | size\_t len | unsigned int flags | - | - |
| <a name="aarch64_78"></a> [78](#aarch64_78) | readlinkat | [man/](https://man7.org/linux/man-pages/man2/readlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadlinkat\b) | 0x4e | int dfd | const char \*path | char \*buf | int bufsiz | - | - |
| <a name="aarch64_79"></a> [79](#aarch64_79) | newfstatat | [man/](https://man7.org/linux/man-pages/man2/newfstatat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnewfstatat\b) | 0x4f | int dfd | const char \*filename | struct stat \*statbuf | int flag | - | - |
| <a name="aarch64_80"></a> [80](#aarch64_80) | fstat | [man/](https://man7.org/linux/man-pages/man2/fstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstat\b) | 0x50 | unsigned int fd | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="aarch64_81"></a> [81](#aarch64_81) | sync | [man/](https://man7.org/linux/man-pages/man2/sync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync\b) | 0x51 | - | - | - | - | - | - |
| <a name="aarch64_82"></a> [82](#aarch64_82) | fsync | [man/](https://man7.org/linux/man-pages/man2/fsync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsync\b) | 0x52 | unsigned int fd | - | - | - | - | - |
| <a name="aarch64_83"></a> [83](#aarch64_83) | fdatasync | [man/](https://man7.org/linux/man-pages/man2/fdatasync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfdatasync\b) | 0x53 | unsigned int fd | - | - | - | - | - |
| <a name="aarch64_84"></a> [84](#aarch64_84) | sync_file_range | [man/](https://man7.org/linux/man-pages/man2/sync_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync_file_range\b) | 0x54 | int fd | loff\_t offset | loff\_t nbytes | unsigned int flags | - | - |
| <a name="aarch64_85"></a> [85](#aarch64_85) | timerfd_create | [man/](https://man7.org/linux/man-pages/man2/timerfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_create\b) | 0x55 | int clockid | int flags | - | - | - | - |
| <a name="aarch64_86"></a> [86](#aarch64_86) | timerfd_settime | [man/](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_settime\b) | 0x56 | int ufd | int flags | const struct \_\_kernel\_itimerspec \*utmr | struct \_\_kernel\_itimerspec \*otmr | - | - |
| <a name="aarch64_87"></a> [87](#aarch64_87) | timerfd_gettime | [man/](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_gettime\b) | 0x57 | int ufd | struct \_\_kernel\_itimerspec \*otmr | - | - | - | - |
| <a name="aarch64_88"></a> [88](#aarch64_88) | utimensat | [man/](https://man7.org/linux/man-pages/man2/utimensat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimensat\b) | 0x58 | int dfd | const char \*filename | struct \_\_kernel\_timespec \*utimes | int flags | - | - |
| <a name="aarch64_89"></a> [89](#aarch64_89) | acct | [man/](https://man7.org/linux/man-pages/man2/acct.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bacct\b) | 0x59 | const char \*name | - | - | - | - | - |
| <a name="aarch64_90"></a> [90](#aarch64_90) | capget | [man/](https://man7.org/linux/man-pages/man2/capget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapget\b) | 0x5a | cap\_user\_header\_t header | cap\_user\_data\_t dataptr | - | - | - | - |
| <a name="aarch64_91"></a> [91](#aarch64_91) | capset | [man/](https://man7.org/linux/man-pages/man2/capset.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapset\b) | 0x5b | cap\_user\_header\_t header | const cap\_user\_data\_t data | - | - | - | - |
| <a name="aarch64_92"></a> [92](#aarch64_92) | personality | [man/](https://man7.org/linux/man-pages/man2/personality.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpersonality\b) | 0x5c | unsigned int personality | - | - | - | - | - |
| <a name="aarch64_93"></a> [93](#aarch64_93) | exit | [man/](https://man7.org/linux/man-pages/man2/exit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit\b) | 0x5d | int error\_code | - | - | - | - | - |
| <a name="aarch64_94"></a> [94](#aarch64_94) | exit_group | [man/](https://man7.org/linux/man-pages/man2/exit_group.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit_group\b) | 0x5e | int error\_code | - | - | - | - | - |
| <a name="aarch64_95"></a> [95](#aarch64_95) | waitid | [man/](https://man7.org/linux/man-pages/man2/waitid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwaitid\b) | 0x5f | int which | pid\_t pid | struct siginfo \*infop | int options | struct rusage \*ru | - |
| <a name="aarch64_96"></a> [96](#aarch64_96) | set_tid_address | [man/](https://man7.org/linux/man-pages/man2/set_tid_address.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_tid_address\b) | 0x60 | int \*tidptr | - | - | - | - | - |
| <a name="aarch64_97"></a> [97](#aarch64_97) | unshare | [man/](https://man7.org/linux/man-pages/man2/unshare.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunshare\b) | 0x61 | unsigned long unshare\_flags | - | - | - | - | - |
| <a name="aarch64_98"></a> [98](#aarch64_98) | futex | [man/](https://man7.org/linux/man-pages/man2/futex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutex\b) | 0x62 | u32 \*uaddr | int op | u32 val | const struct \_\_kernel\_timespec \*utime | u32 \*uaddr2 | u32 val3 |
| <a name="aarch64_99"></a> [99](#aarch64_99) | set_robust_list | [man/](https://man7.org/linux/man-pages/man2/set_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_robust_list\b) | 0x63 | struct robust\_list\_head \*head | size\_t len | - | - | - | - |
| <a name="aarch64_100"></a> [100](#aarch64_100) | get_robust_list | [man/](https://man7.org/linux/man-pages/man2/get_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_robust_list\b) | 0x64 | int pid | struct robust\_list\_head \* \*head\_ptr | size\_t \*len\_ptr | - | - | - |
| <a name="aarch64_101"></a> [101](#aarch64_101) | nanosleep | [man/](https://man7.org/linux/man-pages/man2/nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnanosleep\b) | 0x65 | struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - | - | - |
| <a name="aarch64_102"></a> [102](#aarch64_102) | getitimer | [man/](https://man7.org/linux/man-pages/man2/getitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetitimer\b) | 0x66 | int which | struct \_\_kernel\_old\_itimerval \*value | - | - | - | - |
| <a name="aarch64_103"></a> [103](#aarch64_103) | setitimer | [man/](https://man7.org/linux/man-pages/man2/setitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetitimer\b) | 0x67 | int which | struct \_\_kernel\_old\_itimerval \*value | struct \_\_kernel\_old\_itimerval \*ovalue | - | - | - |
| <a name="aarch64_104"></a> [104](#aarch64_104) | kexec_load | [man/](https://man7.org/linux/man-pages/man2/kexec_load.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkexec_load\b) | 0x68 | unsigned long entry | unsigned long nr\_segments | struct kexec\_segment \*segments | unsigned long flags | - | - |
| <a name="aarch64_105"></a> [105](#aarch64_105) | init_module | [man/](https://man7.org/linux/man-pages/man2/init_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binit_module\b) | 0x69 | void \*umod | unsigned long len | const char \*uargs | - | - | - |
| <a name="aarch64_106"></a> [106](#aarch64_106) | delete_module | [man/](https://man7.org/linux/man-pages/man2/delete_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdelete_module\b) | 0x6a | const char \*name\_user | unsigned int flags | - | - | - | - |
| <a name="aarch64_107"></a> [107](#aarch64_107) | timer_create | [man/](https://man7.org/linux/man-pages/man2/timer_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_create\b) | 0x6b | clockid\_t which\_clock | struct sigevent \*timer\_event\_spec | timer\_t \* created\_timer\_id | - | - | - |
| <a name="aarch64_108"></a> [108](#aarch64_108) | timer_gettime | [man/](https://man7.org/linux/man-pages/man2/timer_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_gettime\b) | 0x6c | timer\_t timer\_id | struct \_\_kernel\_itimerspec \*setting | - | - | - | - |
| <a name="aarch64_109"></a> [109](#aarch64_109) | timer_getoverrun | [man/](https://man7.org/linux/man-pages/man2/timer_getoverrun.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_getoverrun\b) | 0x6d | timer\_t timer\_id | - | - | - | - | - |
| <a name="aarch64_110"></a> [110](#aarch64_110) | timer_settime | [man/](https://man7.org/linux/man-pages/man2/timer_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_settime\b) | 0x6e | timer\_t timer\_id | int flags | const struct \_\_kernel\_itimerspec \*new\_setting | struct \_\_kernel\_itimerspec \*old\_setting | - | - |
| <a name="aarch64_111"></a> [111](#aarch64_111) | timer_delete | [man/](https://man7.org/linux/man-pages/man2/timer_delete.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_delete\b) | 0x6f | timer\_t timer\_id | - | - | - | - | - |
| <a name="aarch64_112"></a> [112](#aarch64_112) | clock_settime | [man/](https://man7.org/linux/man-pages/man2/clock_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_settime\b) | 0x70 | clockid\_t which\_clock | const struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="aarch64_113"></a> [113](#aarch64_113) | clock_gettime | [man/](https://man7.org/linux/man-pages/man2/clock_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_gettime\b) | 0x71 | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="aarch64_114"></a> [114](#aarch64_114) | clock_getres | [man/](https://man7.org/linux/man-pages/man2/clock_getres.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_getres\b) | 0x72 | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="aarch64_115"></a> [115](#aarch64_115) | clock_nanosleep | [man/](https://man7.org/linux/man-pages/man2/clock_nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_nanosleep\b) | 0x73 | clockid\_t which\_clock | int flags | const struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - |
| <a name="aarch64_116"></a> [116](#aarch64_116) | syslog | [man/](https://man7.org/linux/man-pages/man2/syslog.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyslog\b) | 0x74 | int type | char \*buf | int len | - | - | - |
| <a name="aarch64_117"></a> [117](#aarch64_117) | ptrace | [man/](https://man7.org/linux/man-pages/man2/ptrace.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bptrace\b) | 0x75 | long request | long pid | unsigned long addr | unsigned long data | - | - |
| <a name="aarch64_118"></a> [118](#aarch64_118) | sched_setparam | [man/](https://man7.org/linux/man-pages/man2/sched_setparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setparam\b) | 0x76 | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="aarch64_119"></a> [119](#aarch64_119) | sched_setscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setscheduler\b) | 0x77 | pid\_t pid | int policy | struct sched\_param \*param | - | - | - |
| <a name="aarch64_120"></a> [120](#aarch64_120) | sched_getscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_getscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getscheduler\b) | 0x78 | pid\_t pid | - | - | - | - | - |
| <a name="aarch64_121"></a> [121](#aarch64_121) | sched_getparam | [man/](https://man7.org/linux/man-pages/man2/sched_getparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getparam\b) | 0x79 | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="aarch64_122"></a> [122](#aarch64_122) | sched_setaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_setaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setaffinity\b) | 0x7a | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="aarch64_123"></a> [123](#aarch64_123) | sched_getaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_getaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getaffinity\b) | 0x7b | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="aarch64_124"></a> [124](#aarch64_124) | sched_yield | [man/](https://man7.org/linux/man-pages/man2/sched_yield.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_yield\b) | 0x7c | - | - | - | - | - | - |
| <a name="aarch64_125"></a> [125](#aarch64_125) | sched_get_priority_max | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_max.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_max\b) | 0x7d | int policy | - | - | - | - | - |
| <a name="aarch64_126"></a> [126](#aarch64_126) | sched_get_priority_min | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_min.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_min\b) | 0x7e | int policy | - | - | - | - | - |
| <a name="aarch64_127"></a> [127](#aarch64_127) | sched_rr_get_interval | [man/](https://man7.org/linux/man-pages/man2/sched_rr_get_interval.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_rr_get_interval\b) | 0x7f | pid\_t pid | struct \_\_kernel\_timespec \*interval | - | - | - | - |
| <a name="aarch64_128"></a> [128](#aarch64_128) | restart_syscall | [man/](https://man7.org/linux/man-pages/man2/restart_syscall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brestart_syscall\b) | 0x80 | - | - | - | - | - | - |
| <a name="aarch64_129"></a> [129](#aarch64_129) | kill | [man/](https://man7.org/linux/man-pages/man2/kill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkill\b) | 0x81 | pid\_t pid | int sig | - | - | - | - |
| <a name="aarch64_130"></a> [130](#aarch64_130) | tkill | [man/](https://man7.org/linux/man-pages/man2/tkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btkill\b) | 0x82 | pid\_t pid | int sig | - | - | - | - |
| <a name="aarch64_131"></a> [131](#aarch64_131) | tgkill | [man/](https://man7.org/linux/man-pages/man2/tgkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btgkill\b) | 0x83 | pid\_t tgid | pid\_t pid | int sig | - | - | - |
| <a name="aarch64_132"></a> [132](#aarch64_132) | sigaltstack | [man/](https://man7.org/linux/man-pages/man2/sigaltstack.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigaltstack\b) | 0x84 | const struct sigaltstack \*uss | struct sigaltstack \*uoss | - | - | - | - |
| <a name="aarch64_133"></a> [133](#aarch64_133) | rt_sigsuspend | [man/](https://man7.org/linux/man-pages/man2/rt_sigsuspend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigsuspend\b) | 0x85 | sigset\_t \*unewset | size\_t sigsetsize | - | - | - | - |
| <a name="aarch64_134"></a> [134](#aarch64_134) | rt_sigaction | [man/](https://man7.org/linux/man-pages/man2/rt_sigaction.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigaction\b) | 0x86 | int | const struct sigaction \* | struct sigaction \* | size\_t | - | - |
| <a name="aarch64_135"></a> [135](#aarch64_135) | rt_sigprocmask | [man/](https://man7.org/linux/man-pages/man2/rt_sigprocmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigprocmask\b) | 0x87 | int how | sigset\_t \*set | sigset\_t \*oset | size\_t sigsetsize | - | - |
| <a name="aarch64_136"></a> [136](#aarch64_136) | rt_sigpending | [man/](https://man7.org/linux/man-pages/man2/rt_sigpending.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigpending\b) | 0x88 | sigset\_t \*set | size\_t sigsetsize | - | - | - | - |
| <a name="aarch64_137"></a> [137](#aarch64_137) | rt_sigtimedwait | [man/](https://man7.org/linux/man-pages/man2/rt_sigtimedwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigtimedwait\b) | 0x89 | const sigset\_t \*uthese | siginfo\_t \*uinfo | const struct \_\_kernel\_timespec \*uts | size\_t sigsetsize | - | - |
| <a name="aarch64_138"></a> [138](#aarch64_138) | rt_sigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_sigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigqueueinfo\b) | 0x8a | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - | - |
| <a name="aarch64_139"></a> [139](#aarch64_139) | rt_sigreturn | [man/](https://man7.org/linux/man-pages/man2/rt_sigreturn.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigreturn\b) | 0x8b | ? | ? | ? | ? | ? | ? |
| <a name="aarch64_140"></a> [140](#aarch64_140) | setpriority | [man/](https://man7.org/linux/man-pages/man2/setpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpriority\b) | 0x8c | int which | int who | int niceval | - | - | - |
| <a name="aarch64_141"></a> [141](#aarch64_141) | getpriority | [man/](https://man7.org/linux/man-pages/man2/getpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpriority\b) | 0x8d | int which | int who | - | - | - | - |
| <a name="aarch64_142"></a> [142](#aarch64_142) | reboot | [man/](https://man7.org/linux/man-pages/man2/reboot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breboot\b) | 0x8e | int magic1 | int magic2 | unsigned int cmd | void \*arg | - | - |
| <a name="aarch64_143"></a> [143](#aarch64_143) | setregid | [man/](https://man7.org/linux/man-pages/man2/setregid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetregid\b) | 0x8f | gid\_t rgid | gid\_t egid | - | - | - | - |
| <a name="aarch64_144"></a> [144](#aarch64_144) | setgid | [man/](https://man7.org/linux/man-pages/man2/setgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgid\b) | 0x90 | gid\_t gid | - | - | - | - | - |
| <a name="aarch64_145"></a> [145](#aarch64_145) | setreuid | [man/](https://man7.org/linux/man-pages/man2/setreuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetreuid\b) | 0x91 | uid\_t ruid | uid\_t euid | - | - | - | - |
| <a name="aarch64_146"></a> [146](#aarch64_146) | setuid | [man/](https://man7.org/linux/man-pages/man2/setuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetuid\b) | 0x92 | uid\_t uid | - | - | - | - | - |
| <a name="aarch64_147"></a> [147](#aarch64_147) | setresuid | [man/](https://man7.org/linux/man-pages/man2/setresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresuid\b) | 0x93 | uid\_t ruid | uid\_t euid | uid\_t suid | - | - | - |
| <a name="aarch64_148"></a> [148](#aarch64_148) | getresuid | [man/](https://man7.org/linux/man-pages/man2/getresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresuid\b) | 0x94 | uid\_t \*ruid | uid\_t \*euid | uid\_t \*suid | - | - | - |
| <a name="aarch64_149"></a> [149](#aarch64_149) | setresgid | [man/](https://man7.org/linux/man-pages/man2/setresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresgid\b) | 0x95 | gid\_t rgid | gid\_t egid | gid\_t sgid | - | - | - |
| <a name="aarch64_150"></a> [150](#aarch64_150) | getresgid | [man/](https://man7.org/linux/man-pages/man2/getresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresgid\b) | 0x96 | gid\_t \*rgid | gid\_t \*egid | gid\_t \*sgid | - | - | - |
| <a name="aarch64_151"></a> [151](#aarch64_151) | setfsuid | [man/](https://man7.org/linux/man-pages/man2/setfsuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsuid\b) | 0x97 | uid\_t uid | - | - | - | - | - |
| <a name="aarch64_152"></a> [152](#aarch64_152) | setfsgid | [man/](https://man7.org/linux/man-pages/man2/setfsgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsgid\b) | 0x98 | gid\_t gid | - | - | - | - | - |
| <a name="aarch64_153"></a> [153](#aarch64_153) | times | [man/](https://man7.org/linux/man-pages/man2/times.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimes\b) | 0x99 | struct tms \*tbuf | - | - | - | - | - |
| <a name="aarch64_154"></a> [154](#aarch64_154) | setpgid | [man/](https://man7.org/linux/man-pages/man2/setpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpgid\b) | 0x9a | pid\_t pid | pid\_t pgid | - | - | - | - |
| <a name="aarch64_155"></a> [155](#aarch64_155) | getpgid | [man/](https://man7.org/linux/man-pages/man2/getpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpgid\b) | 0x9b | pid\_t pid | - | - | - | - | - |
| <a name="aarch64_156"></a> [156](#aarch64_156) | getsid | [man/](https://man7.org/linux/man-pages/man2/getsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsid\b) | 0x9c | pid\_t pid | - | - | - | - | - |
| <a name="aarch64_157"></a> [157](#aarch64_157) | setsid | [man/](https://man7.org/linux/man-pages/man2/setsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsid\b) | 0x9d | - | - | - | - | - | - |
| <a name="aarch64_158"></a> [158](#aarch64_158) | getgroups | [man/](https://man7.org/linux/man-pages/man2/getgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgroups\b) | 0x9e | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="aarch64_159"></a> [159](#aarch64_159) | setgroups | [man/](https://man7.org/linux/man-pages/man2/setgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgroups\b) | 0x9f | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="aarch64_160"></a> [160](#aarch64_160) | uname | [man/](https://man7.org/linux/man-pages/man2/uname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buname\b) | 0xa0 | struct old\_utsname \* | - | - | - | - | - |
| <a name="aarch64_161"></a> [161](#aarch64_161) | sethostname | [man/](https://man7.org/linux/man-pages/man2/sethostname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsethostname\b) | 0xa1 | char \*name | int len | - | - | - | - |
| <a name="aarch64_162"></a> [162](#aarch64_162) | setdomainname | [man/](https://man7.org/linux/man-pages/man2/setdomainname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetdomainname\b) | 0xa2 | char \*name | int len | - | - | - | - |
| <a name="aarch64_163"></a> [163](#aarch64_163) | getrlimit | [man/](https://man7.org/linux/man-pages/man2/getrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrlimit\b) | 0xa3 | unsigned int resource | struct rlimit \*rlim | - | - | - | - |
| <a name="aarch64_164"></a> [164](#aarch64_164) | setrlimit | [man/](https://man7.org/linux/man-pages/man2/setrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetrlimit\b) | 0xa4 | unsigned int resource | struct rlimit \*rlim | - | - | - | - |
| <a name="aarch64_165"></a> [165](#aarch64_165) | getrusage | [man/](https://man7.org/linux/man-pages/man2/getrusage.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrusage\b) | 0xa5 | int who | struct rusage \*ru | - | - | - | - |
| <a name="aarch64_166"></a> [166](#aarch64_166) | umask | [man/](https://man7.org/linux/man-pages/man2/umask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumask\b) | 0xa6 | int mask | - | - | - | - | - |
| <a name="aarch64_167"></a> [167](#aarch64_167) | prctl | [man/](https://man7.org/linux/man-pages/man2/prctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprctl\b) | 0xa7 | int option | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="aarch64_168"></a> [168](#aarch64_168) | getcpu | [man/](https://man7.org/linux/man-pages/man2/getcpu.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcpu\b) | 0xa8 | unsigned \*cpu | unsigned \*node | struct getcpu\_cache \*cache | - | - | - |
| <a name="aarch64_169"></a> [169](#aarch64_169) | gettimeofday | [man/](https://man7.org/linux/man-pages/man2/gettimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettimeofday\b) | 0xa9 | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="aarch64_170"></a> [170](#aarch64_170) | settimeofday | [man/](https://man7.org/linux/man-pages/man2/settimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsettimeofday\b) | 0xaa | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="aarch64_171"></a> [171](#aarch64_171) | adjtimex | [man/](https://man7.org/linux/man-pages/man2/adjtimex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badjtimex\b) | 0xab | struct \_\_kernel\_timex \*txc\_p | - | - | - | - | - |
| <a name="aarch64_172"></a> [172](#aarch64_172) | getpid | [man/](https://man7.org/linux/man-pages/man2/getpid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpid\b) | 0xac | - | - | - | - | - | - |
| <a name="aarch64_173"></a> [173](#aarch64_173) | getppid | [man/](https://man7.org/linux/man-pages/man2/getppid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetppid\b) | 0xad | - | - | - | - | - | - |
| <a name="aarch64_174"></a> [174](#aarch64_174) | getuid | [man/](https://man7.org/linux/man-pages/man2/getuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetuid\b) | 0xae | - | - | - | - | - | - |
| <a name="aarch64_175"></a> [175](#aarch64_175) | geteuid | [man/](https://man7.org/linux/man-pages/man2/geteuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgeteuid\b) | 0xaf | - | - | - | - | - | - |
| <a name="aarch64_176"></a> [176](#aarch64_176) | getgid | [man/](https://man7.org/linux/man-pages/man2/getgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgid\b) | 0xb0 | - | - | - | - | - | - |
| <a name="aarch64_177"></a> [177](#aarch64_177) | getegid | [man/](https://man7.org/linux/man-pages/man2/getegid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetegid\b) | 0xb1 | - | - | - | - | - | - |
| <a name="aarch64_178"></a> [178](#aarch64_178) | gettid | [man/](https://man7.org/linux/man-pages/man2/gettid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettid\b) | 0xb2 | - | - | - | - | - | - |
| <a name="aarch64_179"></a> [179](#aarch64_179) | sysinfo | [man/](https://man7.org/linux/man-pages/man2/sysinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsysinfo\b) | 0xb3 | struct sysinfo \*info | - | - | - | - | - |
| <a name="aarch64_180"></a> [180](#aarch64_180) | mq_open | [man/](https://man7.org/linux/man-pages/man2/mq_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_open\b) | 0xb4 | const char \*name | int oflag | umode\_t mode | struct mq\_attr \*attr | - | - |
| <a name="aarch64_181"></a> [181](#aarch64_181) | mq_unlink | [man/](https://man7.org/linux/man-pages/man2/mq_unlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_unlink\b) | 0xb5 | const char \*name | - | - | - | - | - |
| <a name="aarch64_182"></a> [182](#aarch64_182) | mq_timedsend | [man/](https://man7.org/linux/man-pages/man2/mq_timedsend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedsend\b) | 0xb6 | mqd\_t mqdes | const char \*msg\_ptr | size\_t msg\_len | unsigned int msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="aarch64_183"></a> [183](#aarch64_183) | mq_timedreceive | [man/](https://man7.org/linux/man-pages/man2/mq_timedreceive.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedreceive\b) | 0xb7 | mqd\_t mqdes | char \*msg\_ptr | size\_t msg\_len | unsigned int \*msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="aarch64_184"></a> [184](#aarch64_184) | mq_notify | [man/](https://man7.org/linux/man-pages/man2/mq_notify.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_notify\b) | 0xb8 | mqd\_t mqdes | const struct sigevent \*notification | - | - | - | - |
| <a name="aarch64_185"></a> [185](#aarch64_185) | mq_getsetattr | [man/](https://man7.org/linux/man-pages/man2/mq_getsetattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_getsetattr\b) | 0xb9 | mqd\_t mqdes | const struct mq\_attr \*mqstat | struct mq\_attr \*omqstat | - | - | - |
| <a name="aarch64_186"></a> [186](#aarch64_186) | msgget | [man/](https://man7.org/linux/man-pages/man2/msgget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgget\b) | 0xba | key\_t key | int msgflg | - | - | - | - |
| <a name="aarch64_187"></a> [187](#aarch64_187) | msgctl | [man/](https://man7.org/linux/man-pages/man2/msgctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgctl\b) | 0xbb | int msqid | int cmd | struct msqid\_ds \*buf | - | - | - |
| <a name="aarch64_188"></a> [188](#aarch64_188) | msgrcv | [man/](https://man7.org/linux/man-pages/man2/msgrcv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgrcv\b) | 0xbc | int msqid | struct msgbuf \*msgp | size\_t msgsz | long msgtyp | int msgflg | - |
| <a name="aarch64_189"></a> [189](#aarch64_189) | msgsnd | [man/](https://man7.org/linux/man-pages/man2/msgsnd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgsnd\b) | 0xbd | int msqid | struct msgbuf \*msgp | size\_t msgsz | int msgflg | - | - |
| <a name="aarch64_190"></a> [190](#aarch64_190) | semget | [man/](https://man7.org/linux/man-pages/man2/semget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemget\b) | 0xbe | key\_t key | int nsems | int semflg | - | - | - |
| <a name="aarch64_191"></a> [191](#aarch64_191) | semctl | [man/](https://man7.org/linux/man-pages/man2/semctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemctl\b) | 0xbf | int semid | int semnum | int cmd | unsigned long arg | - | - |
| <a name="aarch64_192"></a> [192](#aarch64_192) | semtimedop | [man/](https://man7.org/linux/man-pages/man2/semtimedop.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemtimedop\b) | 0xc0 | int semid | struct sembuf \*sops | unsigned nsops | const struct \_\_kernel\_timespec \*timeout | - | - |
| <a name="aarch64_193"></a> [193](#aarch64_193) | semop | [man/](https://man7.org/linux/man-pages/man2/semop.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemop\b) | 0xc1 | int semid | struct sembuf \*sops | unsigned nsops | - | - | - |
| <a name="aarch64_194"></a> [194](#aarch64_194) | shmget | [man/](https://man7.org/linux/man-pages/man2/shmget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmget\b) | 0xc2 | key\_t key | size\_t size | int flag | - | - | - |
| <a name="aarch64_195"></a> [195](#aarch64_195) | shmctl | [man/](https://man7.org/linux/man-pages/man2/shmctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmctl\b) | 0xc3 | int shmid | int cmd | struct shmid\_ds \*buf | - | - | - |
| <a name="aarch64_196"></a> [196](#aarch64_196) | shmat | [man/](https://man7.org/linux/man-pages/man2/shmat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmat\b) | 0xc4 | int shmid | char \*shmaddr | int shmflg | - | - | - |
| <a name="aarch64_197"></a> [197](#aarch64_197) | shmdt | [man/](https://man7.org/linux/man-pages/man2/shmdt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmdt\b) | 0xc5 | char \*shmaddr | - | - | - | - | - |
| <a name="aarch64_198"></a> [198](#aarch64_198) | socket | [man/](https://man7.org/linux/man-pages/man2/socket.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocket\b) | 0xc6 | int | int | int | - | - | - |
| <a name="aarch64_199"></a> [199](#aarch64_199) | socketpair | [man/](https://man7.org/linux/man-pages/man2/socketpair.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocketpair\b) | 0xc7 | int | int | int | int \* | - | - |
| <a name="aarch64_200"></a> [200](#aarch64_200) | bind | [man/](https://man7.org/linux/man-pages/man2/bind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbind\b) | 0xc8 | int | struct sockaddr \* | int | - | - | - |
| <a name="aarch64_201"></a> [201](#aarch64_201) | listen | [man/](https://man7.org/linux/man-pages/man2/listen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blisten\b) | 0xc9 | int | int | - | - | - | - |
| <a name="aarch64_202"></a> [202](#aarch64_202) | accept | [man/](https://man7.org/linux/man-pages/man2/accept.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccept\b) | 0xca | int | struct sockaddr \* | int \* | - | - | - |
| <a name="aarch64_203"></a> [203](#aarch64_203) | connect | [man/](https://man7.org/linux/man-pages/man2/connect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bconnect\b) | 0xcb | int | struct sockaddr \* | int | - | - | - |
| <a name="aarch64_204"></a> [204](#aarch64_204) | getsockname | [man/](https://man7.org/linux/man-pages/man2/getsockname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockname\b) | 0xcc | int | struct sockaddr \* | int \* | - | - | - |
| <a name="aarch64_205"></a> [205](#aarch64_205) | getpeername | [man/](https://man7.org/linux/man-pages/man2/getpeername.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpeername\b) | 0xcd | int | struct sockaddr \* | int \* | - | - | - |
| <a name="aarch64_206"></a> [206](#aarch64_206) | sendto | [man/](https://man7.org/linux/man-pages/man2/sendto.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendto\b) | 0xce | int | void \* | size\_t | unsigned | struct sockaddr \* | int |
| <a name="aarch64_207"></a> [207](#aarch64_207) | recvfrom | [man/](https://man7.org/linux/man-pages/man2/recvfrom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvfrom\b) | 0xcf | int | void \* | size\_t | unsigned | struct sockaddr \* | int \* |
| <a name="aarch64_208"></a> [208](#aarch64_208) | setsockopt | [man/](https://man7.org/linux/man-pages/man2/setsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsockopt\b) | 0xd0 | int fd | int level | int optname | char \*optval | int optlen | - |
| <a name="aarch64_209"></a> [209](#aarch64_209) | getsockopt | [man/](https://man7.org/linux/man-pages/man2/getsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockopt\b) | 0xd1 | int fd | int level | int optname | char \*optval | int \*optlen | - |
| <a name="aarch64_210"></a> [210](#aarch64_210) | shutdown | [man/](https://man7.org/linux/man-pages/man2/shutdown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshutdown\b) | 0xd2 | int | int | - | - | - | - |
| <a name="aarch64_211"></a> [211](#aarch64_211) | sendmsg | [man/](https://man7.org/linux/man-pages/man2/sendmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmsg\b) | 0xd3 | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="aarch64_212"></a> [212](#aarch64_212) | recvmsg | [man/](https://man7.org/linux/man-pages/man2/recvmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmsg\b) | 0xd4 | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="aarch64_213"></a> [213](#aarch64_213) | readahead | [man/](https://man7.org/linux/man-pages/man2/readahead.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadahead\b) | 0xd5 | int fd | loff\_t offset | size\_t count | - | - | - |
| <a name="aarch64_214"></a> [214](#aarch64_214) | brk | [man/](https://man7.org/linux/man-pages/man2/brk.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbrk\b) | 0xd6 | unsigned long brk | - | - | - | - | - |
| <a name="aarch64_215"></a> [215](#aarch64_215) | munmap | [man/](https://man7.org/linux/man-pages/man2/munmap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunmap\b) | 0xd7 | unsigned long addr | size\_t len | - | - | - | - |
| <a name="aarch64_216"></a> [216](#aarch64_216) | mremap | [man/](https://man7.org/linux/man-pages/man2/mremap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmremap\b) | 0xd8 | unsigned long addr | unsigned long old\_len | unsigned long new\_len | unsigned long flags | unsigned long new\_addr | - |
| <a name="aarch64_217"></a> [217](#aarch64_217) | add_key | [man/](https://man7.org/linux/man-pages/man2/add_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badd_key\b) | 0xd9 | const char \*\_type | const char \*\_description | const void \*\_payload | size\_t plen | key\_serial\_t destringid | - |
| <a name="aarch64_218"></a> [218](#aarch64_218) | request_key | [man/](https://man7.org/linux/man-pages/man2/request_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brequest_key\b) | 0xda | const char \*\_type | const char \*\_description | const char \*\_callout\_info | key\_serial\_t destringid | - | - |
| <a name="aarch64_219"></a> [219](#aarch64_219) | keyctl | [man/](https://man7.org/linux/man-pages/man2/keyctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkeyctl\b) | 0xdb | int cmd | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="aarch64_220"></a> [220](#aarch64_220) | clone | [man/](https://man7.org/linux/man-pages/man2/clone.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone\b) | 0xdc | unsigned long | unsigned long | int \* | int \* | unsigned long | - |
| <a name="aarch64_221"></a> [221](#aarch64_221) | execve | [man/](https://man7.org/linux/man-pages/man2/execve.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecve\b) | 0xdd | const char \*filename | const char \*const \*argv | const char \*const \*envp | - | - | - |
| <a name="aarch64_222"></a> [222](#aarch64_222) | mmap | [man/](https://man7.org/linux/man-pages/man2/mmap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmmap\b) | 0xde | ? | ? | ? | ? | ? | ? |
| <a name="aarch64_223"></a> [223](#aarch64_223) | fadvise64 | [man/](https://man7.org/linux/man-pages/man2/fadvise64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfadvise64\b) | 0xdf | int fd | loff\_t offset | size\_t len | int advice | - | - |
| <a name="aarch64_224"></a> [224](#aarch64_224) | swapon | [man/](https://man7.org/linux/man-pages/man2/swapon.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapon\b) | 0xe0 | const char \*specialfile | int swap\_flags | - | - | - | - |
| <a name="aarch64_225"></a> [225](#aarch64_225) | swapoff | [man/](https://man7.org/linux/man-pages/man2/swapoff.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapoff\b) | 0xe1 | const char \*specialfile | - | - | - | - | - |
| <a name="aarch64_226"></a> [226](#aarch64_226) | mprotect | [man/](https://man7.org/linux/man-pages/man2/mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmprotect\b) | 0xe2 | unsigned long start | size\_t len | unsigned long prot | - | - | - |
| <a name="aarch64_227"></a> [227](#aarch64_227) | msync | [man/](https://man7.org/linux/man-pages/man2/msync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsync\b) | 0xe3 | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="aarch64_228"></a> [228](#aarch64_228) | mlock | [man/](https://man7.org/linux/man-pages/man2/mlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock\b) | 0xe4 | unsigned long start | size\_t len | - | - | - | - |
| <a name="aarch64_229"></a> [229](#aarch64_229) | munlock | [man/](https://man7.org/linux/man-pages/man2/munlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlock\b) | 0xe5 | unsigned long start | size\_t len | - | - | - | - |
| <a name="aarch64_230"></a> [230](#aarch64_230) | mlockall | [man/](https://man7.org/linux/man-pages/man2/mlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlockall\b) | 0xe6 | int flags | - | - | - | - | - |
| <a name="aarch64_231"></a> [231](#aarch64_231) | munlockall | [man/](https://man7.org/linux/man-pages/man2/munlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlockall\b) | 0xe7 | - | - | - | - | - | - |
| <a name="aarch64_232"></a> [232](#aarch64_232) | mincore | [man/](https://man7.org/linux/man-pages/man2/mincore.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmincore\b) | 0xe8 | unsigned long start | size\_t len | unsigned char \* vec | - | - | - |
| <a name="aarch64_233"></a> [233](#aarch64_233) | madvise | [man/](https://man7.org/linux/man-pages/man2/madvise.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmadvise\b) | 0xe9 | unsigned long start | size\_t len | int behavior | - | - | - |
| <a name="aarch64_234"></a> [234](#aarch64_234) | remap_file_pages | [man/](https://man7.org/linux/man-pages/man2/remap_file_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremap_file_pages\b) | 0xea | unsigned long start | unsigned long size | unsigned long prot | unsigned long pgoff | unsigned long flags | - |
| <a name="aarch64_235"></a> [235](#aarch64_235) | mbind | [man/](https://man7.org/linux/man-pages/man2/mbind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmbind\b) | 0xeb | unsigned long start | unsigned long len | unsigned long mode | const unsigned long \*nmask | unsigned long maxnode | unsigned flags |
| <a name="aarch64_236"></a> [236](#aarch64_236) | get_mempolicy | [man/](https://man7.org/linux/man-pages/man2/get_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_mempolicy\b) | 0xec | int \*policy | unsigned long \*nmask | unsigned long maxnode | unsigned long addr | unsigned long flags | - |
| <a name="aarch64_237"></a> [237](#aarch64_237) | set_mempolicy | [man/](https://man7.org/linux/man-pages/man2/set_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_mempolicy\b) | 0xed | int mode | const unsigned long \*nmask | unsigned long maxnode | - | - | - |
| <a name="aarch64_238"></a> [238](#aarch64_238) | migrate_pages | [man/](https://man7.org/linux/man-pages/man2/migrate_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmigrate_pages\b) | 0xee | pid\_t pid | unsigned long maxnode | const unsigned long \*from | const unsigned long \*to | - | - |
| <a name="aarch64_239"></a> [239](#aarch64_239) | move_pages | [man/](https://man7.org/linux/man-pages/man2/move_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_pages\b) | 0xef | pid\_t pid | unsigned long nr\_pages | const void \* \*pages | const int \*nodes | int \*status | int flags |
| <a name="aarch64_240"></a> [240](#aarch64_240) | rt_tgsigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_tgsigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_tgsigqueueinfo\b) | 0xf0 | pid\_t tgid | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - |
| <a name="aarch64_241"></a> [241](#aarch64_241) | perf_event_open | [man/](https://man7.org/linux/man-pages/man2/perf_event_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bperf_event_open\b) | 0xf1 | struct perf\_event\_attr \*attr\_uptr | pid\_t pid | int cpu | int group\_fd | unsigned long flags | - |
| <a name="aarch64_242"></a> [242](#aarch64_242) | accept4 | [man/](https://man7.org/linux/man-pages/man2/accept4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccept4\b) | 0xf2 | int | struct sockaddr \* | int \* | int | - | - |
| <a name="aarch64_243"></a> [243](#aarch64_243) | recvmmsg | [man/](https://man7.org/linux/man-pages/man2/recvmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmmsg\b) | 0xf3 | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | struct \_\_kernel\_timespec \*timeout | - |
| <a name="aarch64_244"></a> [244](#aarch64_244) | *not implemented* | | 0xf4 ||
| <a name="aarch64_245"></a> [245](#aarch64_245) | *not implemented* | | 0xf5 ||
| <a name="aarch64_246"></a> [246](#aarch64_246) | *not implemented* | | 0xf6 ||
| <a name="aarch64_247"></a> [247](#aarch64_247) | *not implemented* | | 0xf7 ||
| <a name="aarch64_248"></a> [248](#aarch64_248) | *not implemented* | | 0xf8 ||
| <a name="aarch64_249"></a> [249](#aarch64_249) | *not implemented* | | 0xf9 ||
| <a name="aarch64_250"></a> [250](#aarch64_250) | *not implemented* | | 0xfa ||
| <a name="aarch64_251"></a> [251](#aarch64_251) | *not implemented* | | 0xfb ||
| <a name="aarch64_252"></a> [252](#aarch64_252) | *not implemented* | | 0xfc ||
| <a name="aarch64_253"></a> [253](#aarch64_253) | *not implemented* | | 0xfd ||
| <a name="aarch64_254"></a> [254](#aarch64_254) | *not implemented* | | 0xfe ||
| <a name="aarch64_255"></a> [255](#aarch64_255) | *not implemented* | | 0xff ||
| <a name="aarch64_256"></a> [256](#aarch64_256) | *not implemented* | | 0x100 ||
| <a name="aarch64_257"></a> [257](#aarch64_257) | *not implemented* | | 0x101 ||
| <a name="aarch64_258"></a> [258](#aarch64_258) | *not implemented* | | 0x102 ||
| <a name="aarch64_259"></a> [259](#aarch64_259) | *not implemented* | | 0x103 ||
| <a name="aarch64_260"></a> [260](#aarch64_260) | wait4 | [man/](https://man7.org/linux/man-pages/man2/wait4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwait4\b) | 0x104 | pid\_t pid | int \*stat\_addr | int options | struct rusage \*ru | - | - |
| <a name="aarch64_261"></a> [261](#aarch64_261) | prlimit64 | [man/](https://man7.org/linux/man-pages/man2/prlimit64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprlimit64\b) | 0x105 | pid\_t pid | unsigned int resource | const struct rlimit64 \*new\_rlim | struct rlimit64 \*old\_rlim | - | - |
| <a name="aarch64_262"></a> [262](#aarch64_262) | fanotify_init | [man/](https://man7.org/linux/man-pages/man2/fanotify_init.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_init\b) | 0x106 | unsigned int flags | unsigned int event\_f\_flags | - | - | - | - |
| <a name="aarch64_263"></a> [263](#aarch64_263) | fanotify_mark | [man/](https://man7.org/linux/man-pages/man2/fanotify_mark.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_mark\b) | 0x107 | int fanotify\_fd | unsigned int flags | u64 mask | int fd | const char \*pathname | - |
| <a name="aarch64_264"></a> [264](#aarch64_264) | name_to_handle_at | [man/](https://man7.org/linux/man-pages/man2/name_to_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bname_to_handle_at\b) | 0x108 | int dfd | const char \*name | struct file\_handle \*handle | void \*mnt\_id | int flag | - |
| <a name="aarch64_265"></a> [265](#aarch64_265) | open_by_handle_at | [man/](https://man7.org/linux/man-pages/man2/open_by_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_by_handle_at\b) | 0x109 | int mountdirfd | struct file\_handle \*handle | int flags | - | - | - |
| <a name="aarch64_266"></a> [266](#aarch64_266) | clock_adjtime | [man/](https://man7.org/linux/man-pages/man2/clock_adjtime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_adjtime\b) | 0x10a | clockid\_t which\_clock | struct \_\_kernel\_timex \*tx | - | - | - | - |
| <a name="aarch64_267"></a> [267](#aarch64_267) | syncfs | [man/](https://man7.org/linux/man-pages/man2/syncfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyncfs\b) | 0x10b | int fd | - | - | - | - | - |
| <a name="aarch64_268"></a> [268](#aarch64_268) | setns | [man/](https://man7.org/linux/man-pages/man2/setns.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetns\b) | 0x10c | int fd | int nstype | - | - | - | - |
| <a name="aarch64_269"></a> [269](#aarch64_269) | sendmmsg | [man/](https://man7.org/linux/man-pages/man2/sendmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmmsg\b) | 0x10d | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | - | - |
| <a name="aarch64_270"></a> [270](#aarch64_270) | process_vm_readv | [man/](https://man7.org/linux/man-pages/man2/process_vm_readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_readv\b) | 0x10e | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="aarch64_271"></a> [271](#aarch64_271) | process_vm_writev | [man/](https://man7.org/linux/man-pages/man2/process_vm_writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_writev\b) | 0x10f | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="aarch64_272"></a> [272](#aarch64_272) | kcmp | [man/](https://man7.org/linux/man-pages/man2/kcmp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkcmp\b) | 0x110 | pid\_t pid1 | pid\_t pid2 | int type | unsigned long idx1 | unsigned long idx2 | - |
| <a name="aarch64_273"></a> [273](#aarch64_273) | finit_module | [man/](https://man7.org/linux/man-pages/man2/finit_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfinit_module\b) | 0x111 | int fd | const char \*uargs | int flags | - | - | - |
| <a name="aarch64_274"></a> [274](#aarch64_274) | sched_setattr | [man/](https://man7.org/linux/man-pages/man2/sched_setattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setattr\b) | 0x112 | pid\_t pid | struct sched\_attr \*attr | unsigned int flags | - | - | - |
| <a name="aarch64_275"></a> [275](#aarch64_275) | sched_getattr | [man/](https://man7.org/linux/man-pages/man2/sched_getattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getattr\b) | 0x113 | pid\_t pid | struct sched\_attr \*attr | unsigned int size | unsigned int flags | - | - |
| <a name="aarch64_276"></a> [276](#aarch64_276) | renameat2 | [man/](https://man7.org/linux/man-pages/man2/renameat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat2\b) | 0x114 | int olddfd | const char \*oldname | int newdfd | const char \*newname | unsigned int flags | - |
| <a name="aarch64_277"></a> [277](#aarch64_277) | seccomp | [man/](https://man7.org/linux/man-pages/man2/seccomp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bseccomp\b) | 0x115 | unsigned int op | unsigned int flags | void \*uargs | - | - | - |
| <a name="aarch64_278"></a> [278](#aarch64_278) | getrandom | [man/](https://man7.org/linux/man-pages/man2/getrandom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrandom\b) | 0x116 | char \*buf | size\_t count | unsigned int flags | - | - | - |
| <a name="aarch64_279"></a> [279](#aarch64_279) | memfd_create | [man/](https://man7.org/linux/man-pages/man2/memfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmemfd_create\b) | 0x117 | const char \*uname\_ptr | unsigned int flags | - | - | - | - |
| <a name="aarch64_280"></a> [280](#aarch64_280) | bpf | [man/](https://man7.org/linux/man-pages/man2/bpf.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbpf\b) | 0x118 | int cmd | union bpf\_attr \*attr | unsigned int size | - | - | - |
| <a name="aarch64_281"></a> [281](#aarch64_281) | execveat | [man/](https://man7.org/linux/man-pages/man2/execveat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecveat\b) | 0x119 | int dfd | const char \*filename | const char \*const \*argv | const char \*const \*envp | int flags | - |
| <a name="aarch64_282"></a> [282](#aarch64_282) | userfaultfd | [man/](https://man7.org/linux/man-pages/man2/userfaultfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buserfaultfd\b) | 0x11a | int flags | - | - | - | - | - |
| <a name="aarch64_283"></a> [283](#aarch64_283) | membarrier | [man/](https://man7.org/linux/man-pages/man2/membarrier.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmembarrier\b) | 0x11b | int cmd | unsigned int flags | int cpu\_id | - | - | - |
| <a name="aarch64_284"></a> [284](#aarch64_284) | mlock2 | [man/](https://man7.org/linux/man-pages/man2/mlock2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock2\b) | 0x11c | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="aarch64_285"></a> [285](#aarch64_285) | copy_file_range | [man/](https://man7.org/linux/man-pages/man2/copy_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcopy_file_range\b) | 0x11d | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="aarch64_286"></a> [286](#aarch64_286) | preadv2 | [man/](https://man7.org/linux/man-pages/man2/preadv2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv2\b) | 0x11e | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="aarch64_287"></a> [287](#aarch64_287) | pwritev2 | [man/](https://man7.org/linux/man-pages/man2/pwritev2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev2\b) | 0x11f | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="aarch64_288"></a> [288](#aarch64_288) | pkey_mprotect | [man/](https://man7.org/linux/man-pages/man2/pkey_mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_mprotect\b) | 0x120 | unsigned long start | size\_t len | unsigned long prot | int pkey | - | - |
| <a name="aarch64_289"></a> [289](#aarch64_289) | pkey_alloc | [man/](https://man7.org/linux/man-pages/man2/pkey_alloc.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_alloc\b) | 0x121 | unsigned long flags | unsigned long init\_val | - | - | - | - |
| <a name="aarch64_290"></a> [290](#aarch64_290) | pkey_free | [man/](https://man7.org/linux/man-pages/man2/pkey_free.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_free\b) | 0x122 | int pkey | - | - | - | - | - |
| <a name="aarch64_291"></a> [291](#aarch64_291) | statx | [man/](https://man7.org/linux/man-pages/man2/statx.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatx\b) | 0x123 | int dfd | const char \*path | unsigned flags | unsigned mask | struct statx \*buffer | - |
| <a name="aarch64_292"></a> [292](#aarch64_292) | io_pgetevents | [man/](https://man7.org/linux/man-pages/man2/io_pgetevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_pgetevents\b) | 0x124 | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | const struct \_\_aio\_sigset \*sig |
| <a name="aarch64_293"></a> [293](#aarch64_293) | rseq | [man/](https://man7.org/linux/man-pages/man2/rseq.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brseq\b) | 0x125 | struct rseq \*rseq | uint32\_t rseq\_len | int flags | uint32\_t sig | - | - |
| <a name="aarch64_294"></a> [294](#aarch64_294) | kexec_file_load | [man/](https://man7.org/linux/man-pages/man2/kexec_file_load.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkexec_file_load\b) | 0x126 | int kernel\_fd | int initrd\_fd | unsigned long cmdline\_len | const char \*cmdline\_ptr | unsigned long flags | - |
| <a name="aarch64_424"></a> [424](#aarch64_424) | pidfd_send_signal | [man/](https://man7.org/linux/man-pages/man2/pidfd_send_signal.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_send_signal\b) | 0x1a8 | int pidfd | int sig | siginfo\_t \*info | unsigned int flags | - | - |
| <a name="aarch64_425"></a> [425](#aarch64_425) | io_uring_setup | [man/](https://man7.org/linux/man-pages/man2/io_uring_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_setup\b) | 0x1a9 | u32 entries | struct io\_uring\_params \*p | - | - | - | - |
| <a name="aarch64_426"></a> [426](#aarch64_426) | io_uring_enter | [man/](https://man7.org/linux/man-pages/man2/io_uring_enter.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_enter\b) | 0x1aa | unsigned int fd | u32 to\_submit | u32 min\_complete | u32 flags | const void \*argp | size\_t argsz |
| <a name="aarch64_427"></a> [427](#aarch64_427) | io_uring_register | [man/](https://man7.org/linux/man-pages/man2/io_uring_register.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_register\b) | 0x1ab | unsigned int fd | unsigned int op | void \*arg | unsigned int nr\_args | - | - |
| <a name="aarch64_428"></a> [428](#aarch64_428) | open_tree | [man/](https://man7.org/linux/man-pages/man2/open_tree.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_tree\b) | 0x1ac | int dfd | const char \*path | unsigned flags | - | - | - |
| <a name="aarch64_429"></a> [429](#aarch64_429) | move_mount | [man/](https://man7.org/linux/man-pages/man2/move_mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_mount\b) | 0x1ad | int from\_dfd | const char \*from\_path | int to\_dfd | const char \*to\_path | unsigned int ms\_flags | - |
| <a name="aarch64_430"></a> [430](#aarch64_430) | fsopen | [man/](https://man7.org/linux/man-pages/man2/fsopen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsopen\b) | 0x1ae | const char \*fs\_name | unsigned int flags | - | - | - | - |
| <a name="aarch64_431"></a> [431](#aarch64_431) | fsconfig | [man/](https://man7.org/linux/man-pages/man2/fsconfig.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsconfig\b) | 0x1af | int fs\_fd | unsigned int cmd | const char \*key | const void \*value | int aux | - |
| <a name="aarch64_432"></a> [432](#aarch64_432) | fsmount | [man/](https://man7.org/linux/man-pages/man2/fsmount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsmount\b) | 0x1b0 | int fs\_fd | unsigned int flags | unsigned int ms\_flags | - | - | - |
| <a name="aarch64_433"></a> [433](#aarch64_433) | fspick | [man/](https://man7.org/linux/man-pages/man2/fspick.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfspick\b) | 0x1b1 | int dfd | const char \*path | unsigned int flags | - | - | - |
| <a name="aarch64_434"></a> [434](#aarch64_434) | pidfd_open | [man/](https://man7.org/linux/man-pages/man2/pidfd_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_open\b) | 0x1b2 | pid\_t pid | unsigned int flags | - | - | - | - |
| <a name="aarch64_435"></a> [435](#aarch64_435) | clone3 | [man/](https://man7.org/linux/man-pages/man2/clone3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone3\b) | 0x1b3 | struct clone\_args \*uargs | size\_t size | - | - | - | - |
| <a name="aarch64_436"></a> [436](#aarch64_436) | close_range | [man/](https://man7.org/linux/man-pages/man2/close_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose_range\b) | 0x1b4 | unsigned int fd | unsigned int max\_fd | unsigned int flags | - | - | - |
| <a name="aarch64_437"></a> [437](#aarch64_437) | *not implemented* | | 0x1b5 ||
| <a name="aarch64_438"></a> [438](#aarch64_438) | *not implemented* | | 0x1b6 ||
| <a name="aarch64_439"></a> [439](#aarch64_439) | faccessat2 | [man/](https://man7.org/linux/man-pages/man2/faccessat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat2\b) | 0x1b7 | int dfd | const char \*filename | int mode | int flags | - | - |

### x86 (32-bit)

Compiled from [Linux 5.4.0 headers][linux-headers].

| NR | syscall name | references | %eax | arg0 (%ebx) | arg1 (%ecx) | arg2 (%edx) | arg3 (%esi) | arg4 (%edi) | arg5 (%ebp) |
|:---:|---|:---:|:---:|---|---|---|---|---|---|
| <a name="i686_0"></a> [0](#i686_0) | restart_syscall | [man/](https://man7.org/linux/man-pages/man2/restart_syscall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brestart_syscall\b) | 0x00 | - | - | - | - | - | - |
| <a name="i686_1"></a> [1](#i686_1) | exit | [man/](https://man7.org/linux/man-pages/man2/exit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit\b) | 0x01 | int error\_code | - | - | - | - | - |
| <a name="i686_2"></a> [2](#i686_2) | fork | [man/](https://man7.org/linux/man-pages/man2/fork.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfork\b) | 0x02 | - | - | - | - | - | - |
| <a name="i686_3"></a> [3](#i686_3) | read | [man/](https://man7.org/linux/man-pages/man2/read.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bread\b) | 0x03 | unsigned int fd | char \*buf | size\_t count | - | - | - |
| <a name="i686_4"></a> [4](#i686_4) | write | [man/](https://man7.org/linux/man-pages/man2/write.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwrite\b) | 0x04 | unsigned int fd | const char \*buf | size\_t count | - | - | - |
| <a name="i686_5"></a> [5](#i686_5) | open | [man/](https://man7.org/linux/man-pages/man2/open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen\b) | 0x05 | const char \*filename | int flags | umode\_t mode | - | - | - |
| <a name="i686_6"></a> [6](#i686_6) | close | [man/](https://man7.org/linux/man-pages/man2/close.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose\b) | 0x06 | unsigned int fd | - | - | - | - | - |
| <a name="i686_7"></a> [7](#i686_7) | waitpid | [man/](https://man7.org/linux/man-pages/man2/waitpid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwaitpid\b) | 0x07 | pid\_t pid | int \*stat\_addr | int options | - | - | - |
| <a name="i686_8"></a> [8](#i686_8) | creat | [man/](https://man7.org/linux/man-pages/man2/creat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcreat\b) | 0x08 | const char \*pathname | umode\_t mode | - | - | - | - |
| <a name="i686_9"></a> [9](#i686_9) | link | [man/](https://man7.org/linux/man-pages/man2/link.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blink\b) | 0x09 | const char \*oldname | const char \*newname | - | - | - | - |
| <a name="i686_10"></a> [10](#i686_10) | unlink | [man/](https://man7.org/linux/man-pages/man2/unlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunlink\b) | 0x0a | const char \*pathname | - | - | - | - | - |
| <a name="i686_11"></a> [11](#i686_11) | execve | [man/](https://man7.org/linux/man-pages/man2/execve.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecve\b) | 0x0b | const char \*filename | const char \*const \*argv | const char \*const \*envp | - | - | - |
| <a name="i686_12"></a> [12](#i686_12) | chdir | [man/](https://man7.org/linux/man-pages/man2/chdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchdir\b) | 0x0c | const char \*filename | - | - | - | - | - |
| <a name="i686_13"></a> [13](#i686_13) | time | [man/](https://man7.org/linux/man-pages/man2/time.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btime\b) | 0x0d | \_\_kernel\_old\_time\_t \*tloc | - | - | - | - | - |
| <a name="i686_14"></a> [14](#i686_14) | mknod | [man/](https://man7.org/linux/man-pages/man2/mknod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmknod\b) | 0x0e | const char \*filename | umode\_t mode | unsigned dev | - | - | - |
| <a name="i686_15"></a> [15](#i686_15) | chmod | [man/](https://man7.org/linux/man-pages/man2/chmod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchmod\b) | 0x0f | const char \*filename | umode\_t mode | - | - | - | - |
| <a name="i686_16"></a> [16](#i686_16) | lchown | [man/](https://man7.org/linux/man-pages/man2/lchown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blchown\b) | 0x10 | const char \*filename | uid\_t user | gid\_t group | - | - | - |
| <a name="i686_17"></a> [17](#i686_17) | break | [man/](https://man7.org/linux/man-pages/man2/break.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbreak\b) | 0x11 | ? | ? | ? | ? | ? | ? |
| <a name="i686_18"></a> [18](#i686_18) | oldstat | [man/](https://man7.org/linux/man-pages/man2/oldstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\boldstat\b) | 0x12 | ? | ? | ? | ? | ? | ? |
| <a name="i686_19"></a> [19](#i686_19) | lseek | [man/](https://man7.org/linux/man-pages/man2/lseek.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blseek\b) | 0x13 | unsigned int fd | off\_t offset | unsigned int whence | - | - | - |
| <a name="i686_20"></a> [20](#i686_20) | getpid | [man/](https://man7.org/linux/man-pages/man2/getpid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpid\b) | 0x14 | - | - | - | - | - | - |
| <a name="i686_21"></a> [21](#i686_21) | mount | [man/](https://man7.org/linux/man-pages/man2/mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmount\b) | 0x15 | char \*dev\_name | char \*dir\_name | char \*type | unsigned long flags | void \*data | - |
| <a name="i686_22"></a> [22](#i686_22) | umount | [man/](https://man7.org/linux/man-pages/man2/umount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumount\b) | 0x16 | char \*name | int flags | - | - | - | - |
| <a name="i686_23"></a> [23](#i686_23) | setuid | [man/](https://man7.org/linux/man-pages/man2/setuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetuid\b) | 0x17 | uid\_t uid | - | - | - | - | - |
| <a name="i686_24"></a> [24](#i686_24) | getuid | [man/](https://man7.org/linux/man-pages/man2/getuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetuid\b) | 0x18 | - | - | - | - | - | - |
| <a name="i686_25"></a> [25](#i686_25) | stime | [man/](https://man7.org/linux/man-pages/man2/stime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstime\b) | 0x19 | \_\_kernel\_old\_time\_t \*tptr | - | - | - | - | - |
| <a name="i686_26"></a> [26](#i686_26) | ptrace | [man/](https://man7.org/linux/man-pages/man2/ptrace.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bptrace\b) | 0x1a | long request | long pid | unsigned long addr | unsigned long data | - | - |
| <a name="i686_27"></a> [27](#i686_27) | alarm | [man/](https://man7.org/linux/man-pages/man2/alarm.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\balarm\b) | 0x1b | unsigned int seconds | - | - | - | - | - |
| <a name="i686_28"></a> [28](#i686_28) | oldfstat | [man/](https://man7.org/linux/man-pages/man2/oldfstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\boldfstat\b) | 0x1c | ? | ? | ? | ? | ? | ? |
| <a name="i686_29"></a> [29](#i686_29) | pause | [man/](https://man7.org/linux/man-pages/man2/pause.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpause\b) | 0x1d | - | - | - | - | - | - |
| <a name="i686_30"></a> [30](#i686_30) | utime | [man/](https://man7.org/linux/man-pages/man2/utime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butime\b) | 0x1e | char \*filename | struct utimbuf \*times | - | - | - | - |
| <a name="i686_31"></a> [31](#i686_31) | stty | [man/](https://man7.org/linux/man-pages/man2/stty.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstty\b) | 0x1f | ? | ? | ? | ? | ? | ? |
| <a name="i686_32"></a> [32](#i686_32) | gtty | [man/](https://man7.org/linux/man-pages/man2/gtty.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgtty\b) | 0x20 | ? | ? | ? | ? | ? | ? |
| <a name="i686_33"></a> [33](#i686_33) | access | [man/](https://man7.org/linux/man-pages/man2/access.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccess\b) | 0x21 | const char \*filename | int mode | - | - | - | - |
| <a name="i686_34"></a> [34](#i686_34) | nice | [man/](https://man7.org/linux/man-pages/man2/nice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnice\b) | 0x22 | int increment | - | - | - | - | - |
| <a name="i686_35"></a> [35](#i686_35) | ftime | [man/](https://man7.org/linux/man-pages/man2/ftime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bftime\b) | 0x23 | ? | ? | ? | ? | ? | ? |
| <a name="i686_36"></a> [36](#i686_36) | sync | [man/](https://man7.org/linux/man-pages/man2/sync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync\b) | 0x24 | - | - | - | - | - | - |
| <a name="i686_37"></a> [37](#i686_37) | kill | [man/](https://man7.org/linux/man-pages/man2/kill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkill\b) | 0x25 | pid\_t pid | int sig | - | - | - | - |
| <a name="i686_38"></a> [38](#i686_38) | rename | [man/](https://man7.org/linux/man-pages/man2/rename.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brename\b) | 0x26 | const char \*oldname | const char \*newname | - | - | - | - |
| <a name="i686_39"></a> [39](#i686_39) | mkdir | [man/](https://man7.org/linux/man-pages/man2/mkdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmkdir\b) | 0x27 | const char \*pathname | umode\_t mode | - | - | - | - |
| <a name="i686_40"></a> [40](#i686_40) | rmdir | [man/](https://man7.org/linux/man-pages/man2/rmdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brmdir\b) | 0x28 | const char \*pathname | - | - | - | - | - |
| <a name="i686_41"></a> [41](#i686_41) | dup | [man/](https://man7.org/linux/man-pages/man2/dup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup\b) | 0x29 | unsigned int fildes | - | - | - | - | - |
| <a name="i686_42"></a> [42](#i686_42) | pipe | [man/](https://man7.org/linux/man-pages/man2/pipe.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpipe\b) | 0x2a | int \*fildes | - | - | - | - | - |
| <a name="i686_43"></a> [43](#i686_43) | times | [man/](https://man7.org/linux/man-pages/man2/times.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimes\b) | 0x2b | struct tms \*tbuf | - | - | - | - | - |
| <a name="i686_44"></a> [44](#i686_44) | prof | [man/](https://man7.org/linux/man-pages/man2/prof.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprof\b) | 0x2c | ? | ? | ? | ? | ? | ? |
| <a name="i686_45"></a> [45](#i686_45) | brk | [man/](https://man7.org/linux/man-pages/man2/brk.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbrk\b) | 0x2d | unsigned long brk | - | - | - | - | - |
| <a name="i686_46"></a> [46](#i686_46) | setgid | [man/](https://man7.org/linux/man-pages/man2/setgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgid\b) | 0x2e | gid\_t gid | - | - | - | - | - |
| <a name="i686_47"></a> [47](#i686_47) | getgid | [man/](https://man7.org/linux/man-pages/man2/getgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgid\b) | 0x2f | - | - | - | - | - | - |
| <a name="i686_48"></a> [48](#i686_48) | signal | [man/](https://man7.org/linux/man-pages/man2/signal.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignal\b) | 0x30 | int sig | \_\_sighandler\_t handler | - | - | - | - |
| <a name="i686_49"></a> [49](#i686_49) | geteuid | [man/](https://man7.org/linux/man-pages/man2/geteuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgeteuid\b) | 0x31 | - | - | - | - | - | - |
| <a name="i686_50"></a> [50](#i686_50) | getegid | [man/](https://man7.org/linux/man-pages/man2/getegid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetegid\b) | 0x32 | - | - | - | - | - | - |
| <a name="i686_51"></a> [51](#i686_51) | acct | [man/](https://man7.org/linux/man-pages/man2/acct.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bacct\b) | 0x33 | const char \*name | - | - | - | - | - |
| <a name="i686_52"></a> [52](#i686_52) | umount2 | [man/](https://man7.org/linux/man-pages/man2/umount2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumount2\b) | 0x34 | ? | ? | ? | ? | ? | ? |
| <a name="i686_53"></a> [53](#i686_53) | lock | [man/](https://man7.org/linux/man-pages/man2/lock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\block\b) | 0x35 | ? | ? | ? | ? | ? | ? |
| <a name="i686_54"></a> [54](#i686_54) | ioctl | [man/](https://man7.org/linux/man-pages/man2/ioctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioctl\b) | 0x36 | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="i686_55"></a> [55](#i686_55) | fcntl | [man/](https://man7.org/linux/man-pages/man2/fcntl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfcntl\b) | 0x37 | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="i686_56"></a> [56](#i686_56) | mpx | [man/](https://man7.org/linux/man-pages/man2/mpx.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmpx\b) | 0x38 | ? | ? | ? | ? | ? | ? |
| <a name="i686_57"></a> [57](#i686_57) | setpgid | [man/](https://man7.org/linux/man-pages/man2/setpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpgid\b) | 0x39 | pid\_t pid | pid\_t pgid | - | - | - | - |
| <a name="i686_58"></a> [58](#i686_58) | ulimit | [man/](https://man7.org/linux/man-pages/man2/ulimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bulimit\b) | 0x3a | ? | ? | ? | ? | ? | ? |
| <a name="i686_59"></a> [59](#i686_59) | oldolduname | [man/](https://man7.org/linux/man-pages/man2/oldolduname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\boldolduname\b) | 0x3b | ? | ? | ? | ? | ? | ? |
| <a name="i686_60"></a> [60](#i686_60) | umask | [man/](https://man7.org/linux/man-pages/man2/umask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bumask\b) | 0x3c | int mask | - | - | - | - | - |
| <a name="i686_61"></a> [61](#i686_61) | chroot | [man/](https://man7.org/linux/man-pages/man2/chroot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchroot\b) | 0x3d | const char \*filename | - | - | - | - | - |
| <a name="i686_62"></a> [62](#i686_62) | ustat | [man/](https://man7.org/linux/man-pages/man2/ustat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bustat\b) | 0x3e | unsigned dev | struct ustat \*ubuf | - | - | - | - |
| <a name="i686_63"></a> [63](#i686_63) | dup2 | [man/](https://man7.org/linux/man-pages/man2/dup2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup2\b) | 0x3f | unsigned int oldfd | unsigned int newfd | - | - | - | - |
| <a name="i686_64"></a> [64](#i686_64) | getppid | [man/](https://man7.org/linux/man-pages/man2/getppid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetppid\b) | 0x40 | - | - | - | - | - | - |
| <a name="i686_65"></a> [65](#i686_65) | getpgrp | [man/](https://man7.org/linux/man-pages/man2/getpgrp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpgrp\b) | 0x41 | - | - | - | - | - | - |
| <a name="i686_66"></a> [66](#i686_66) | setsid | [man/](https://man7.org/linux/man-pages/man2/setsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsid\b) | 0x42 | - | - | - | - | - | - |
| <a name="i686_67"></a> [67](#i686_67) | sigaction | [man/](https://man7.org/linux/man-pages/man2/sigaction.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigaction\b) | 0x43 | int | const struct old\_sigaction \* | struct old\_sigaction \* | - | - | - |
| <a name="i686_68"></a> [68](#i686_68) | sgetmask | [man/](https://man7.org/linux/man-pages/man2/sgetmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsgetmask\b) | 0x44 | - | - | - | - | - | - |
| <a name="i686_69"></a> [69](#i686_69) | ssetmask | [man/](https://man7.org/linux/man-pages/man2/ssetmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bssetmask\b) | 0x45 | int newmask | - | - | - | - | - |
| <a name="i686_70"></a> [70](#i686_70) | setreuid | [man/](https://man7.org/linux/man-pages/man2/setreuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetreuid\b) | 0x46 | uid\_t ruid | uid\_t euid | - | - | - | - |
| <a name="i686_71"></a> [71](#i686_71) | setregid | [man/](https://man7.org/linux/man-pages/man2/setregid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetregid\b) | 0x47 | gid\_t rgid | gid\_t egid | - | - | - | - |
| <a name="i686_72"></a> [72](#i686_72) | sigsuspend | [man/](https://man7.org/linux/man-pages/man2/sigsuspend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigsuspend\b) | 0x48 | int unused1 | int unused2 | old\_sigset\_t mask | - | - | - |
| <a name="i686_73"></a> [73](#i686_73) | sigpending | [man/](https://man7.org/linux/man-pages/man2/sigpending.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigpending\b) | 0x49 | old\_sigset\_t \*uset | - | - | - | - | - |
| <a name="i686_74"></a> [74](#i686_74) | sethostname | [man/](https://man7.org/linux/man-pages/man2/sethostname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsethostname\b) | 0x4a | char \*name | int len | - | - | - | - |
| <a name="i686_75"></a> [75](#i686_75) | setrlimit | [man/](https://man7.org/linux/man-pages/man2/setrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetrlimit\b) | 0x4b | unsigned int resource | struct rlimit \*rlim | - | - | - | - |
| <a name="i686_76"></a> [76](#i686_76) | getrlimit | [man/](https://man7.org/linux/man-pages/man2/getrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrlimit\b) | 0x4c | unsigned int resource | struct rlimit \*rlim | - | - | - | - |
| <a name="i686_77"></a> [77](#i686_77) | getrusage | [man/](https://man7.org/linux/man-pages/man2/getrusage.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrusage\b) | 0x4d | int who | struct rusage \*ru | - | - | - | - |
| <a name="i686_78"></a> [78](#i686_78) | gettimeofday | [man/](https://man7.org/linux/man-pages/man2/gettimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettimeofday\b) | 0x4e | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="i686_79"></a> [79](#i686_79) | settimeofday | [man/](https://man7.org/linux/man-pages/man2/settimeofday.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsettimeofday\b) | 0x4f | struct \_\_kernel\_old\_timeval \*tv | struct timezone \*tz | - | - | - | - |
| <a name="i686_80"></a> [80](#i686_80) | getgroups | [man/](https://man7.org/linux/man-pages/man2/getgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgroups\b) | 0x50 | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="i686_81"></a> [81](#i686_81) | setgroups | [man/](https://man7.org/linux/man-pages/man2/setgroups.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgroups\b) | 0x51 | int gidsetsize | gid\_t \*grouplist | - | - | - | - |
| <a name="i686_82"></a> [82](#i686_82) | select | [man/](https://man7.org/linux/man-pages/man2/select.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bselect\b) | 0x52 | int n | fd\_set \*inp | fd\_set \*outp | fd\_set \*exp | struct \_\_kernel\_old\_timeval \*tvp | - |
| <a name="i686_83"></a> [83](#i686_83) | symlink | [man/](https://man7.org/linux/man-pages/man2/symlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsymlink\b) | 0x53 | const char \*old | const char \*new | - | - | - | - |
| <a name="i686_84"></a> [84](#i686_84) | oldlstat | [man/](https://man7.org/linux/man-pages/man2/oldlstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\boldlstat\b) | 0x54 | ? | ? | ? | ? | ? | ? |
| <a name="i686_85"></a> [85](#i686_85) | readlink | [man/](https://man7.org/linux/man-pages/man2/readlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadlink\b) | 0x55 | const char \*path | char \*buf | int bufsiz | - | - | - |
| <a name="i686_86"></a> [86](#i686_86) | uselib | [man/](https://man7.org/linux/man-pages/man2/uselib.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buselib\b) | 0x56 | const char \*library | - | - | - | - | - |
| <a name="i686_87"></a> [87](#i686_87) | swapon | [man/](https://man7.org/linux/man-pages/man2/swapon.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapon\b) | 0x57 | const char \*specialfile | int swap\_flags | - | - | - | - |
| <a name="i686_88"></a> [88](#i686_88) | reboot | [man/](https://man7.org/linux/man-pages/man2/reboot.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breboot\b) | 0x58 | int magic1 | int magic2 | unsigned int cmd | void \*arg | - | - |
| <a name="i686_89"></a> [89](#i686_89) | readdir | [man/](https://man7.org/linux/man-pages/man2/readdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breaddir\b) | 0x59 | ? | ? | ? | ? | ? | ? |
| <a name="i686_90"></a> [90](#i686_90) | mmap | [man/](https://man7.org/linux/man-pages/man2/mmap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmmap\b) | 0x5a | ? | ? | ? | ? | ? | ? |
| <a name="i686_91"></a> [91](#i686_91) | munmap | [man/](https://man7.org/linux/man-pages/man2/munmap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunmap\b) | 0x5b | unsigned long addr | size\_t len | - | - | - | - |
| <a name="i686_92"></a> [92](#i686_92) | truncate | [man/](https://man7.org/linux/man-pages/man2/truncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btruncate\b) | 0x5c | const char \*path | long length | - | - | - | - |
| <a name="i686_93"></a> [93](#i686_93) | ftruncate | [man/](https://man7.org/linux/man-pages/man2/ftruncate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bftruncate\b) | 0x5d | unsigned int fd | off\_t length | - | - | - | - |
| <a name="i686_94"></a> [94](#i686_94) | fchmod | [man/](https://man7.org/linux/man-pages/man2/fchmod.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmod\b) | 0x5e | unsigned int fd | umode\_t mode | - | - | - | - |
| <a name="i686_95"></a> [95](#i686_95) | fchown | [man/](https://man7.org/linux/man-pages/man2/fchown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchown\b) | 0x5f | unsigned int fd | uid\_t user | gid\_t group | - | - | - |
| <a name="i686_96"></a> [96](#i686_96) | getpriority | [man/](https://man7.org/linux/man-pages/man2/getpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpriority\b) | 0x60 | int which | int who | - | - | - | - |
| <a name="i686_97"></a> [97](#i686_97) | setpriority | [man/](https://man7.org/linux/man-pages/man2/setpriority.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetpriority\b) | 0x61 | int which | int who | int niceval | - | - | - |
| <a name="i686_98"></a> [98](#i686_98) | profil | [man/](https://man7.org/linux/man-pages/man2/profil.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprofil\b) | 0x62 | ? | ? | ? | ? | ? | ? |
| <a name="i686_99"></a> [99](#i686_99) | statfs | [man/](https://man7.org/linux/man-pages/man2/statfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatfs\b) | 0x63 | const char \* path | struct statfs \*buf | - | - | - | - |
| <a name="i686_100"></a> [100](#i686_100) | fstatfs | [man/](https://man7.org/linux/man-pages/man2/fstatfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatfs\b) | 0x64 | unsigned int fd | struct statfs \*buf | - | - | - | - |
| <a name="i686_101"></a> [101](#i686_101) | ioperm | [man/](https://man7.org/linux/man-pages/man2/ioperm.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioperm\b) | 0x65 | unsigned long from | unsigned long num | int on | - | - | - |
| <a name="i686_102"></a> [102](#i686_102) | socketcall | [man/](https://man7.org/linux/man-pages/man2/socketcall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocketcall\b) | 0x66 | int call | unsigned long \*args | - | - | - | - |
| <a name="i686_103"></a> [103](#i686_103) | syslog | [man/](https://man7.org/linux/man-pages/man2/syslog.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyslog\b) | 0x67 | int type | char \*buf | int len | - | - | - |
| <a name="i686_104"></a> [104](#i686_104) | setitimer | [man/](https://man7.org/linux/man-pages/man2/setitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetitimer\b) | 0x68 | int which | struct \_\_kernel\_old\_itimerval \*value | struct \_\_kernel\_old\_itimerval \*ovalue | - | - | - |
| <a name="i686_105"></a> [105](#i686_105) | getitimer | [man/](https://man7.org/linux/man-pages/man2/getitimer.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetitimer\b) | 0x69 | int which | struct \_\_kernel\_old\_itimerval \*value | - | - | - | - |
| <a name="i686_106"></a> [106](#i686_106) | stat | [man/](https://man7.org/linux/man-pages/man2/stat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstat\b) | 0x6a | const char \*filename | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="i686_107"></a> [107](#i686_107) | lstat | [man/](https://man7.org/linux/man-pages/man2/lstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blstat\b) | 0x6b | const char \*filename | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="i686_108"></a> [108](#i686_108) | fstat | [man/](https://man7.org/linux/man-pages/man2/fstat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstat\b) | 0x6c | unsigned int fd | struct \_\_old\_kernel\_stat \*statbuf | - | - | - | - |
| <a name="i686_109"></a> [109](#i686_109) | olduname | [man/](https://man7.org/linux/man-pages/man2/olduname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bolduname\b) | 0x6d | struct oldold\_utsname \* | - | - | - | - | - |
| <a name="i686_110"></a> [110](#i686_110) | iopl | [man/](https://man7.org/linux/man-pages/man2/iopl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\biopl\b) | 0x6e | ? | ? | ? | ? | ? | ? |
| <a name="i686_111"></a> [111](#i686_111) | vhangup | [man/](https://man7.org/linux/man-pages/man2/vhangup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvhangup\b) | 0x6f | - | - | - | - | - | - |
| <a name="i686_112"></a> [112](#i686_112) | idle | [man/](https://man7.org/linux/man-pages/man2/idle.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bidle\b) | 0x70 | ? | ? | ? | ? | ? | ? |
| <a name="i686_113"></a> [113](#i686_113) | vm86old | [man/](https://man7.org/linux/man-pages/man2/vm86old.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvm86old\b) | 0x71 | ? | ? | ? | ? | ? | ? |
| <a name="i686_114"></a> [114](#i686_114) | wait4 | [man/](https://man7.org/linux/man-pages/man2/wait4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwait4\b) | 0x72 | pid\_t pid | int \*stat\_addr | int options | struct rusage \*ru | - | - |
| <a name="i686_115"></a> [115](#i686_115) | swapoff | [man/](https://man7.org/linux/man-pages/man2/swapoff.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bswapoff\b) | 0x73 | const char \*specialfile | - | - | - | - | - |
| <a name="i686_116"></a> [116](#i686_116) | sysinfo | [man/](https://man7.org/linux/man-pages/man2/sysinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsysinfo\b) | 0x74 | struct sysinfo \*info | - | - | - | - | - |
| <a name="i686_117"></a> [117](#i686_117) | ipc | [man/](https://man7.org/linux/man-pages/man2/ipc.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bipc\b) | 0x75 | unsigned int call | int first | unsigned long second | unsigned long third | void \*ptr | long fifth |
| <a name="i686_118"></a> [118](#i686_118) | fsync | [man/](https://man7.org/linux/man-pages/man2/fsync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsync\b) | 0x76 | unsigned int fd | - | - | - | - | - |
| <a name="i686_119"></a> [119](#i686_119) | sigreturn | [man/](https://man7.org/linux/man-pages/man2/sigreturn.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigreturn\b) | 0x77 | ? | ? | ? | ? | ? | ? |
| <a name="i686_120"></a> [120](#i686_120) | clone | [man/](https://man7.org/linux/man-pages/man2/clone.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone\b) | 0x78 | unsigned long | unsigned long | int \* | int \* | unsigned long | - |
| <a name="i686_121"></a> [121](#i686_121) | setdomainname | [man/](https://man7.org/linux/man-pages/man2/setdomainname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetdomainname\b) | 0x79 | char \*name | int len | - | - | - | - |
| <a name="i686_122"></a> [122](#i686_122) | uname | [man/](https://man7.org/linux/man-pages/man2/uname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buname\b) | 0x7a | struct old\_utsname \* | - | - | - | - | - |
| <a name="i686_123"></a> [123](#i686_123) | modify_ldt | [man/](https://man7.org/linux/man-pages/man2/modify_ldt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmodify_ldt\b) | 0x7b | ? | ? | ? | ? | ? | ? |
| <a name="i686_124"></a> [124](#i686_124) | adjtimex | [man/](https://man7.org/linux/man-pages/man2/adjtimex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badjtimex\b) | 0x7c | struct \_\_kernel\_timex \*txc\_p | - | - | - | - | - |
| <a name="i686_125"></a> [125](#i686_125) | mprotect | [man/](https://man7.org/linux/man-pages/man2/mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmprotect\b) | 0x7d | unsigned long start | size\_t len | unsigned long prot | - | - | - |
| <a name="i686_126"></a> [126](#i686_126) | sigprocmask | [man/](https://man7.org/linux/man-pages/man2/sigprocmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigprocmask\b) | 0x7e | int how | old\_sigset\_t \*set | old\_sigset\_t \*oset | - | - | - |
| <a name="i686_127"></a> [127](#i686_127) | create_module | [man/](https://man7.org/linux/man-pages/man2/create_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcreate_module\b) | 0x7f | ? | ? | ? | ? | ? | ? |
| <a name="i686_128"></a> [128](#i686_128) | init_module | [man/](https://man7.org/linux/man-pages/man2/init_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binit_module\b) | 0x80 | void \*umod | unsigned long len | const char \*uargs | - | - | - |
| <a name="i686_129"></a> [129](#i686_129) | delete_module | [man/](https://man7.org/linux/man-pages/man2/delete_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdelete_module\b) | 0x81 | const char \*name\_user | unsigned int flags | - | - | - | - |
| <a name="i686_130"></a> [130](#i686_130) | get_kernel_syms | [man/](https://man7.org/linux/man-pages/man2/get_kernel_syms.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_kernel_syms\b) | 0x82 | ? | ? | ? | ? | ? | ? |
| <a name="i686_131"></a> [131](#i686_131) | quotactl | [man/](https://man7.org/linux/man-pages/man2/quotactl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bquotactl\b) | 0x83 | unsigned int cmd | const char \*special | qid\_t id | void \*addr | - | - |
| <a name="i686_132"></a> [132](#i686_132) | getpgid | [man/](https://man7.org/linux/man-pages/man2/getpgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpgid\b) | 0x84 | pid\_t pid | - | - | - | - | - |
| <a name="i686_133"></a> [133](#i686_133) | fchdir | [man/](https://man7.org/linux/man-pages/man2/fchdir.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchdir\b) | 0x85 | unsigned int fd | - | - | - | - | - |
| <a name="i686_134"></a> [134](#i686_134) | bdflush | [man/](https://man7.org/linux/man-pages/man2/bdflush.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbdflush\b) | 0x86 | ? | ? | ? | ? | ? | ? |
| <a name="i686_135"></a> [135](#i686_135) | sysfs | [man/](https://man7.org/linux/man-pages/man2/sysfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsysfs\b) | 0x87 | int option | unsigned long arg1 | unsigned long arg2 | - | - | - |
| <a name="i686_136"></a> [136](#i686_136) | personality | [man/](https://man7.org/linux/man-pages/man2/personality.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpersonality\b) | 0x88 | unsigned int personality | - | - | - | - | - |
| <a name="i686_137"></a> [137](#i686_137) | afs_syscall | [man/](https://man7.org/linux/man-pages/man2/afs_syscall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bafs_syscall\b) | 0x89 | ? | ? | ? | ? | ? | ? |
| <a name="i686_138"></a> [138](#i686_138) | setfsuid | [man/](https://man7.org/linux/man-pages/man2/setfsuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsuid\b) | 0x8a | uid\_t uid | - | - | - | - | - |
| <a name="i686_139"></a> [139](#i686_139) | setfsgid | [man/](https://man7.org/linux/man-pages/man2/setfsgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsgid\b) | 0x8b | gid\_t gid | - | - | - | - | - |
| <a name="i686_140"></a> [140](#i686_140) | _llseek | [man/](https://man7.org/linux/man-pages/man2/_llseek.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\b_llseek\b) | 0x8c | ? | ? | ? | ? | ? | ? |
| <a name="i686_141"></a> [141](#i686_141) | getdents | [man/](https://man7.org/linux/man-pages/man2/getdents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetdents\b) | 0x8d | unsigned int fd | struct linux\_dirent \*dirent | unsigned int count | - | - | - |
| <a name="i686_142"></a> [142](#i686_142) | _newselect | [man/](https://man7.org/linux/man-pages/man2/_newselect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\b_newselect\b) | 0x8e | ? | ? | ? | ? | ? | ? |
| <a name="i686_143"></a> [143](#i686_143) | flock | [man/](https://man7.org/linux/man-pages/man2/flock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflock\b) | 0x8f | unsigned int fd | unsigned int cmd | - | - | - | - |
| <a name="i686_144"></a> [144](#i686_144) | msync | [man/](https://man7.org/linux/man-pages/man2/msync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsync\b) | 0x90 | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="i686_145"></a> [145](#i686_145) | readv | [man/](https://man7.org/linux/man-pages/man2/readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadv\b) | 0x91 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="i686_146"></a> [146](#i686_146) | writev | [man/](https://man7.org/linux/man-pages/man2/writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwritev\b) | 0x92 | unsigned long fd | const struct iovec \*vec | unsigned long vlen | - | - | - |
| <a name="i686_147"></a> [147](#i686_147) | getsid | [man/](https://man7.org/linux/man-pages/man2/getsid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsid\b) | 0x93 | pid\_t pid | - | - | - | - | - |
| <a name="i686_148"></a> [148](#i686_148) | fdatasync | [man/](https://man7.org/linux/man-pages/man2/fdatasync.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfdatasync\b) | 0x94 | unsigned int fd | - | - | - | - | - |
| <a name="i686_149"></a> [149](#i686_149) | _sysctl | [man/](https://man7.org/linux/man-pages/man2/_sysctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\b_sysctl\b) | 0x95 | ? | ? | ? | ? | ? | ? |
| <a name="i686_150"></a> [150](#i686_150) | mlock | [man/](https://man7.org/linux/man-pages/man2/mlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock\b) | 0x96 | unsigned long start | size\_t len | - | - | - | - |
| <a name="i686_151"></a> [151](#i686_151) | munlock | [man/](https://man7.org/linux/man-pages/man2/munlock.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlock\b) | 0x97 | unsigned long start | size\_t len | - | - | - | - |
| <a name="i686_152"></a> [152](#i686_152) | mlockall | [man/](https://man7.org/linux/man-pages/man2/mlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlockall\b) | 0x98 | int flags | - | - | - | - | - |
| <a name="i686_153"></a> [153](#i686_153) | munlockall | [man/](https://man7.org/linux/man-pages/man2/munlockall.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmunlockall\b) | 0x99 | - | - | - | - | - | - |
| <a name="i686_154"></a> [154](#i686_154) | sched_setparam | [man/](https://man7.org/linux/man-pages/man2/sched_setparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setparam\b) | 0x9a | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="i686_155"></a> [155](#i686_155) | sched_getparam | [man/](https://man7.org/linux/man-pages/man2/sched_getparam.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getparam\b) | 0x9b | pid\_t pid | struct sched\_param \*param | - | - | - | - |
| <a name="i686_156"></a> [156](#i686_156) | sched_setscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setscheduler\b) | 0x9c | pid\_t pid | int policy | struct sched\_param \*param | - | - | - |
| <a name="i686_157"></a> [157](#i686_157) | sched_getscheduler | [man/](https://man7.org/linux/man-pages/man2/sched_getscheduler.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getscheduler\b) | 0x9d | pid\_t pid | - | - | - | - | - |
| <a name="i686_158"></a> [158](#i686_158) | sched_yield | [man/](https://man7.org/linux/man-pages/man2/sched_yield.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_yield\b) | 0x9e | - | - | - | - | - | - |
| <a name="i686_159"></a> [159](#i686_159) | sched_get_priority_max | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_max.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_max\b) | 0x9f | int policy | - | - | - | - | - |
| <a name="i686_160"></a> [160](#i686_160) | sched_get_priority_min | [man/](https://man7.org/linux/man-pages/man2/sched_get_priority_min.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_get_priority_min\b) | 0xa0 | int policy | - | - | - | - | - |
| <a name="i686_161"></a> [161](#i686_161) | sched_rr_get_interval | [man/](https://man7.org/linux/man-pages/man2/sched_rr_get_interval.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_rr_get_interval\b) | 0xa1 | pid\_t pid | struct \_\_kernel\_timespec \*interval | - | - | - | - |
| <a name="i686_162"></a> [162](#i686_162) | nanosleep | [man/](https://man7.org/linux/man-pages/man2/nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnanosleep\b) | 0xa2 | struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - | - | - |
| <a name="i686_163"></a> [163](#i686_163) | mremap | [man/](https://man7.org/linux/man-pages/man2/mremap.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmremap\b) | 0xa3 | unsigned long addr | unsigned long old\_len | unsigned long new\_len | unsigned long flags | unsigned long new\_addr | - |
| <a name="i686_164"></a> [164](#i686_164) | setresuid | [man/](https://man7.org/linux/man-pages/man2/setresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresuid\b) | 0xa4 | uid\_t ruid | uid\_t euid | uid\_t suid | - | - | - |
| <a name="i686_165"></a> [165](#i686_165) | getresuid | [man/](https://man7.org/linux/man-pages/man2/getresuid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresuid\b) | 0xa5 | uid\_t \*ruid | uid\_t \*euid | uid\_t \*suid | - | - | - |
| <a name="i686_166"></a> [166](#i686_166) | vm86 | [man/](https://man7.org/linux/man-pages/man2/vm86.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvm86\b) | 0xa6 | ? | ? | ? | ? | ? | ? |
| <a name="i686_167"></a> [167](#i686_167) | query_module | [man/](https://man7.org/linux/man-pages/man2/query_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bquery_module\b) | 0xa7 | ? | ? | ? | ? | ? | ? |
| <a name="i686_168"></a> [168](#i686_168) | poll | [man/](https://man7.org/linux/man-pages/man2/poll.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpoll\b) | 0xa8 | struct pollfd \*ufds | unsigned int nfds | int timeout | - | - | - |
| <a name="i686_169"></a> [169](#i686_169) | nfsservctl | [man/](https://man7.org/linux/man-pages/man2/nfsservctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bnfsservctl\b) | 0xa9 | ? | ? | ? | ? | ? | ? |
| <a name="i686_170"></a> [170](#i686_170) | setresgid | [man/](https://man7.org/linux/man-pages/man2/setresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresgid\b) | 0xaa | gid\_t rgid | gid\_t egid | gid\_t sgid | - | - | - |
| <a name="i686_171"></a> [171](#i686_171) | getresgid | [man/](https://man7.org/linux/man-pages/man2/getresgid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresgid\b) | 0xab | gid\_t \*rgid | gid\_t \*egid | gid\_t \*sgid | - | - | - |
| <a name="i686_172"></a> [172](#i686_172) | prctl | [man/](https://man7.org/linux/man-pages/man2/prctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprctl\b) | 0xac | int option | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="i686_173"></a> [173](#i686_173) | rt_sigreturn | [man/](https://man7.org/linux/man-pages/man2/rt_sigreturn.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigreturn\b) | 0xad | ? | ? | ? | ? | ? | ? |
| <a name="i686_174"></a> [174](#i686_174) | rt_sigaction | [man/](https://man7.org/linux/man-pages/man2/rt_sigaction.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigaction\b) | 0xae | int | const struct sigaction \* | struct sigaction \* | size\_t | - | - |
| <a name="i686_175"></a> [175](#i686_175) | rt_sigprocmask | [man/](https://man7.org/linux/man-pages/man2/rt_sigprocmask.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigprocmask\b) | 0xaf | int how | sigset\_t \*set | sigset\_t \*oset | size\_t sigsetsize | - | - |
| <a name="i686_176"></a> [176](#i686_176) | rt_sigpending | [man/](https://man7.org/linux/man-pages/man2/rt_sigpending.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigpending\b) | 0xb0 | sigset\_t \*set | size\_t sigsetsize | - | - | - | - |
| <a name="i686_177"></a> [177](#i686_177) | rt_sigtimedwait | [man/](https://man7.org/linux/man-pages/man2/rt_sigtimedwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigtimedwait\b) | 0xb1 | const sigset\_t \*uthese | siginfo\_t \*uinfo | const struct \_\_kernel\_timespec \*uts | size\_t sigsetsize | - | - |
| <a name="i686_178"></a> [178](#i686_178) | rt_sigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_sigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigqueueinfo\b) | 0xb2 | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - | - |
| <a name="i686_179"></a> [179](#i686_179) | rt_sigsuspend | [man/](https://man7.org/linux/man-pages/man2/rt_sigsuspend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigsuspend\b) | 0xb3 | sigset\_t \*unewset | size\_t sigsetsize | - | - | - | - |
| <a name="i686_180"></a> [180](#i686_180) | pread64 | [man/](https://man7.org/linux/man-pages/man2/pread64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpread64\b) | 0xb4 | unsigned int fd | char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="i686_181"></a> [181](#i686_181) | pwrite64 | [man/](https://man7.org/linux/man-pages/man2/pwrite64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwrite64\b) | 0xb5 | unsigned int fd | const char \*buf | size\_t count | loff\_t pos | - | - |
| <a name="i686_182"></a> [182](#i686_182) | chown | [man/](https://man7.org/linux/man-pages/man2/chown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchown\b) | 0xb6 | const char \*filename | uid\_t user | gid\_t group | - | - | - |
| <a name="i686_183"></a> [183](#i686_183) | getcwd | [man/](https://man7.org/linux/man-pages/man2/getcwd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcwd\b) | 0xb7 | char \*buf | unsigned long size | - | - | - | - |
| <a name="i686_184"></a> [184](#i686_184) | capget | [man/](https://man7.org/linux/man-pages/man2/capget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapget\b) | 0xb8 | cap\_user\_header\_t header | cap\_user\_data\_t dataptr | - | - | - | - |
| <a name="i686_185"></a> [185](#i686_185) | capset | [man/](https://man7.org/linux/man-pages/man2/capset.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcapset\b) | 0xb9 | cap\_user\_header\_t header | const cap\_user\_data\_t data | - | - | - | - |
| <a name="i686_186"></a> [186](#i686_186) | sigaltstack | [man/](https://man7.org/linux/man-pages/man2/sigaltstack.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsigaltstack\b) | 0xba | const struct sigaltstack \*uss | struct sigaltstack \*uoss | - | - | - | - |
| <a name="i686_187"></a> [187](#i686_187) | sendfile | [man/](https://man7.org/linux/man-pages/man2/sendfile.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendfile\b) | 0xbb | int out\_fd | int in\_fd | off\_t \*offset | size\_t count | - | - |
| <a name="i686_188"></a> [188](#i686_188) | getpmsg | [man/](https://man7.org/linux/man-pages/man2/getpmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpmsg\b) | 0xbc | ? | ? | ? | ? | ? | ? |
| <a name="i686_189"></a> [189](#i686_189) | putpmsg | [man/](https://man7.org/linux/man-pages/man2/putpmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bputpmsg\b) | 0xbd | ? | ? | ? | ? | ? | ? |
| <a name="i686_190"></a> [190](#i686_190) | vfork | [man/](https://man7.org/linux/man-pages/man2/vfork.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvfork\b) | 0xbe | - | - | - | - | - | - |
| <a name="i686_191"></a> [191](#i686_191) | ugetrlimit | [man/](https://man7.org/linux/man-pages/man2/ugetrlimit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bugetrlimit\b) | 0xbf | ? | ? | ? | ? | ? | ? |
| <a name="i686_192"></a> [192](#i686_192) | mmap2 | [man/](https://man7.org/linux/man-pages/man2/mmap2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmmap2\b) | 0xc0 | ? | ? | ? | ? | ? | ? |
| <a name="i686_193"></a> [193](#i686_193) | truncate64 | [man/](https://man7.org/linux/man-pages/man2/truncate64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btruncate64\b) | 0xc1 | const char \*path | loff\_t length | - | - | - | - |
| <a name="i686_194"></a> [194](#i686_194) | ftruncate64 | [man/](https://man7.org/linux/man-pages/man2/ftruncate64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bftruncate64\b) | 0xc2 | unsigned int fd | loff\_t length | - | - | - | - |
| <a name="i686_195"></a> [195](#i686_195) | stat64 | [man/](https://man7.org/linux/man-pages/man2/stat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstat64\b) | 0xc3 | const char \*filename | struct stat64 \*statbuf | - | - | - | - |
| <a name="i686_196"></a> [196](#i686_196) | lstat64 | [man/](https://man7.org/linux/man-pages/man2/lstat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blstat64\b) | 0xc4 | const char \*filename | struct stat64 \*statbuf | - | - | - | - |
| <a name="i686_197"></a> [197](#i686_197) | fstat64 | [man/](https://man7.org/linux/man-pages/man2/fstat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstat64\b) | 0xc5 | unsigned long fd | struct stat64 \*statbuf | - | - | - | - |
| <a name="i686_198"></a> [198](#i686_198) | lchown32 | [man/](https://man7.org/linux/man-pages/man2/lchown32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blchown32\b) | 0xc6 | ? | ? | ? | ? | ? | ? |
| <a name="i686_199"></a> [199](#i686_199) | getuid32 | [man/](https://man7.org/linux/man-pages/man2/getuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetuid32\b) | 0xc7 | ? | ? | ? | ? | ? | ? |
| <a name="i686_200"></a> [200](#i686_200) | getgid32 | [man/](https://man7.org/linux/man-pages/man2/getgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgid32\b) | 0xc8 | ? | ? | ? | ? | ? | ? |
| <a name="i686_201"></a> [201](#i686_201) | geteuid32 | [man/](https://man7.org/linux/man-pages/man2/geteuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgeteuid32\b) | 0xc9 | ? | ? | ? | ? | ? | ? |
| <a name="i686_202"></a> [202](#i686_202) | getegid32 | [man/](https://man7.org/linux/man-pages/man2/getegid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetegid32\b) | 0xca | ? | ? | ? | ? | ? | ? |
| <a name="i686_203"></a> [203](#i686_203) | setreuid32 | [man/](https://man7.org/linux/man-pages/man2/setreuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetreuid32\b) | 0xcb | ? | ? | ? | ? | ? | ? |
| <a name="i686_204"></a> [204](#i686_204) | setregid32 | [man/](https://man7.org/linux/man-pages/man2/setregid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetregid32\b) | 0xcc | ? | ? | ? | ? | ? | ? |
| <a name="i686_205"></a> [205](#i686_205) | getgroups32 | [man/](https://man7.org/linux/man-pages/man2/getgroups32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetgroups32\b) | 0xcd | ? | ? | ? | ? | ? | ? |
| <a name="i686_206"></a> [206](#i686_206) | setgroups32 | [man/](https://man7.org/linux/man-pages/man2/setgroups32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgroups32\b) | 0xce | ? | ? | ? | ? | ? | ? |
| <a name="i686_207"></a> [207](#i686_207) | fchown32 | [man/](https://man7.org/linux/man-pages/man2/fchown32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchown32\b) | 0xcf | ? | ? | ? | ? | ? | ? |
| <a name="i686_208"></a> [208](#i686_208) | setresuid32 | [man/](https://man7.org/linux/man-pages/man2/setresuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresuid32\b) | 0xd0 | ? | ? | ? | ? | ? | ? |
| <a name="i686_209"></a> [209](#i686_209) | getresuid32 | [man/](https://man7.org/linux/man-pages/man2/getresuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresuid32\b) | 0xd1 | ? | ? | ? | ? | ? | ? |
| <a name="i686_210"></a> [210](#i686_210) | setresgid32 | [man/](https://man7.org/linux/man-pages/man2/setresgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetresgid32\b) | 0xd2 | ? | ? | ? | ? | ? | ? |
| <a name="i686_211"></a> [211](#i686_211) | getresgid32 | [man/](https://man7.org/linux/man-pages/man2/getresgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetresgid32\b) | 0xd3 | ? | ? | ? | ? | ? | ? |
| <a name="i686_212"></a> [212](#i686_212) | chown32 | [man/](https://man7.org/linux/man-pages/man2/chown32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bchown32\b) | 0xd4 | ? | ? | ? | ? | ? | ? |
| <a name="i686_213"></a> [213](#i686_213) | setuid32 | [man/](https://man7.org/linux/man-pages/man2/setuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetuid32\b) | 0xd5 | ? | ? | ? | ? | ? | ? |
| <a name="i686_214"></a> [214](#i686_214) | setgid32 | [man/](https://man7.org/linux/man-pages/man2/setgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetgid32\b) | 0xd6 | ? | ? | ? | ? | ? | ? |
| <a name="i686_215"></a> [215](#i686_215) | setfsuid32 | [man/](https://man7.org/linux/man-pages/man2/setfsuid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsuid32\b) | 0xd7 | ? | ? | ? | ? | ? | ? |
| <a name="i686_216"></a> [216](#i686_216) | setfsgid32 | [man/](https://man7.org/linux/man-pages/man2/setfsgid32.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetfsgid32\b) | 0xd8 | ? | ? | ? | ? | ? | ? |
| <a name="i686_217"></a> [217](#i686_217) | pivot_root | [man/](https://man7.org/linux/man-pages/man2/pivot_root.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpivot_root\b) | 0xd9 | const char \*new\_root | const char \*put\_old | - | - | - | - |
| <a name="i686_218"></a> [218](#i686_218) | mincore | [man/](https://man7.org/linux/man-pages/man2/mincore.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmincore\b) | 0xda | unsigned long start | size\_t len | unsigned char \* vec | - | - | - |
| <a name="i686_219"></a> [219](#i686_219) | madvise | [man/](https://man7.org/linux/man-pages/man2/madvise.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmadvise\b) | 0xdb | unsigned long start | size\_t len | int behavior | - | - | - |
| <a name="i686_220"></a> [220](#i686_220) | getdents64 | [man/](https://man7.org/linux/man-pages/man2/getdents64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetdents64\b) | 0xdc | unsigned int fd | struct linux\_dirent64 \*dirent | unsigned int count | - | - | - |
| <a name="i686_221"></a> [221](#i686_221) | fcntl64 | [man/](https://man7.org/linux/man-pages/man2/fcntl64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfcntl64\b) | 0xdd | unsigned int fd | unsigned int cmd | unsigned long arg | - | - | - |
| <a name="i686_222"></a> [222](#i686_222) | *not implemented* | | 0xde ||
| <a name="i686_223"></a> [223](#i686_223) | *not implemented* | | 0xdf ||
| <a name="i686_224"></a> [224](#i686_224) | gettid | [man/](https://man7.org/linux/man-pages/man2/gettid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgettid\b) | 0xe0 | - | - | - | - | - | - |
| <a name="i686_225"></a> [225](#i686_225) | readahead | [man/](https://man7.org/linux/man-pages/man2/readahead.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadahead\b) | 0xe1 | int fd | loff\_t offset | size\_t count | - | - | - |
| <a name="i686_226"></a> [226](#i686_226) | setxattr | [man/](https://man7.org/linux/man-pages/man2/setxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetxattr\b) | 0xe2 | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="i686_227"></a> [227](#i686_227) | lsetxattr | [man/](https://man7.org/linux/man-pages/man2/lsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blsetxattr\b) | 0xe3 | const char \*path | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="i686_228"></a> [228](#i686_228) | fsetxattr | [man/](https://man7.org/linux/man-pages/man2/fsetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsetxattr\b) | 0xe4 | int fd | const char \*name | const void \*value | size\_t size | int flags | - |
| <a name="i686_229"></a> [229](#i686_229) | getxattr | [man/](https://man7.org/linux/man-pages/man2/getxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetxattr\b) | 0xe5 | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="i686_230"></a> [230](#i686_230) | lgetxattr | [man/](https://man7.org/linux/man-pages/man2/lgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blgetxattr\b) | 0xe6 | const char \*path | const char \*name | void \*value | size\_t size | - | - |
| <a name="i686_231"></a> [231](#i686_231) | fgetxattr | [man/](https://man7.org/linux/man-pages/man2/fgetxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfgetxattr\b) | 0xe7 | int fd | const char \*name | void \*value | size\_t size | - | - |
| <a name="i686_232"></a> [232](#i686_232) | listxattr | [man/](https://man7.org/linux/man-pages/man2/listxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blistxattr\b) | 0xe8 | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="i686_233"></a> [233](#i686_233) | llistxattr | [man/](https://man7.org/linux/man-pages/man2/llistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bllistxattr\b) | 0xe9 | const char \*path | char \*list | size\_t size | - | - | - |
| <a name="i686_234"></a> [234](#i686_234) | flistxattr | [man/](https://man7.org/linux/man-pages/man2/flistxattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bflistxattr\b) | 0xea | int fd | char \*list | size\_t size | - | - | - |
| <a name="i686_235"></a> [235](#i686_235) | removexattr | [man/](https://man7.org/linux/man-pages/man2/removexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremovexattr\b) | 0xeb | const char \*path | const char \*name | - | - | - | - |
| <a name="i686_236"></a> [236](#i686_236) | lremovexattr | [man/](https://man7.org/linux/man-pages/man2/lremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blremovexattr\b) | 0xec | const char \*path | const char \*name | - | - | - | - |
| <a name="i686_237"></a> [237](#i686_237) | fremovexattr | [man/](https://man7.org/linux/man-pages/man2/fremovexattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfremovexattr\b) | 0xed | int fd | const char \*name | - | - | - | - |
| <a name="i686_238"></a> [238](#i686_238) | tkill | [man/](https://man7.org/linux/man-pages/man2/tkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btkill\b) | 0xee | pid\_t pid | int sig | - | - | - | - |
| <a name="i686_239"></a> [239](#i686_239) | sendfile64 | [man/](https://man7.org/linux/man-pages/man2/sendfile64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendfile64\b) | 0xef | int out\_fd | int in\_fd | loff\_t \*offset | size\_t count | - | - |
| <a name="i686_240"></a> [240](#i686_240) | futex | [man/](https://man7.org/linux/man-pages/man2/futex.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutex\b) | 0xf0 | u32 \*uaddr | int op | u32 val | const struct \_\_kernel\_timespec \*utime | u32 \*uaddr2 | u32 val3 |
| <a name="i686_241"></a> [241](#i686_241) | sched_setaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_setaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setaffinity\b) | 0xf1 | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="i686_242"></a> [242](#i686_242) | sched_getaffinity | [man/](https://man7.org/linux/man-pages/man2/sched_getaffinity.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getaffinity\b) | 0xf2 | pid\_t pid | unsigned int len | unsigned long \*user\_mask\_ptr | - | - | - |
| <a name="i686_243"></a> [243](#i686_243) | set_thread_area | [man/](https://man7.org/linux/man-pages/man2/set_thread_area.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_thread_area\b) | 0xf3 | ? | ? | ? | ? | ? | ? |
| <a name="i686_244"></a> [244](#i686_244) | get_thread_area | [man/](https://man7.org/linux/man-pages/man2/get_thread_area.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_thread_area\b) | 0xf4 | ? | ? | ? | ? | ? | ? |
| <a name="i686_245"></a> [245](#i686_245) | io_setup | [man/](https://man7.org/linux/man-pages/man2/io_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_setup\b) | 0xf5 | unsigned nr\_reqs | aio\_context\_t \*ctx | - | - | - | - |
| <a name="i686_246"></a> [246](#i686_246) | io_destroy | [man/](https://man7.org/linux/man-pages/man2/io_destroy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_destroy\b) | 0xf6 | aio\_context\_t ctx | - | - | - | - | - |
| <a name="i686_247"></a> [247](#i686_247) | io_getevents | [man/](https://man7.org/linux/man-pages/man2/io_getevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_getevents\b) | 0xf7 | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | - |
| <a name="i686_248"></a> [248](#i686_248) | io_submit | [man/](https://man7.org/linux/man-pages/man2/io_submit.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_submit\b) | 0xf8 | aio\_context\_t | long | struct iocb \* \* | - | - | - |
| <a name="i686_249"></a> [249](#i686_249) | io_cancel | [man/](https://man7.org/linux/man-pages/man2/io_cancel.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_cancel\b) | 0xf9 | aio\_context\_t ctx\_id | struct iocb \*iocb | struct io\_event \*result | - | - | - |
| <a name="i686_250"></a> [250](#i686_250) | fadvise64 | [man/](https://man7.org/linux/man-pages/man2/fadvise64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfadvise64\b) | 0xfa | int fd | loff\_t offset | size\_t len | int advice | - | - |
| <a name="i686_251"></a> [251](#i686_251) | *not implemented* | | 0xfb ||
| <a name="i686_252"></a> [252](#i686_252) | exit_group | [man/](https://man7.org/linux/man-pages/man2/exit_group.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexit_group\b) | 0xfc | int error\_code | - | - | - | - | - |
| <a name="i686_253"></a> [253](#i686_253) | lookup_dcookie | [man/](https://man7.org/linux/man-pages/man2/lookup_dcookie.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blookup_dcookie\b) | 0xfd | ? | ? | ? | ? | ? | ? |
| <a name="i686_254"></a> [254](#i686_254) | epoll_create | [man/](https://man7.org/linux/man-pages/man2/epoll_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_create\b) | 0xfe | int size | - | - | - | - | - |
| <a name="i686_255"></a> [255](#i686_255) | epoll_ctl | [man/](https://man7.org/linux/man-pages/man2/epoll_ctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_ctl\b) | 0xff | int epfd | int op | int fd | struct epoll\_event \*event | - | - |
| <a name="i686_256"></a> [256](#i686_256) | epoll_wait | [man/](https://man7.org/linux/man-pages/man2/epoll_wait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_wait\b) | 0x100 | int epfd | struct epoll\_event \*events | int maxevents | int timeout | - | - |
| <a name="i686_257"></a> [257](#i686_257) | remap_file_pages | [man/](https://man7.org/linux/man-pages/man2/remap_file_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bremap_file_pages\b) | 0x101 | unsigned long start | unsigned long size | unsigned long prot | unsigned long pgoff | unsigned long flags | - |
| <a name="i686_258"></a> [258](#i686_258) | set_tid_address | [man/](https://man7.org/linux/man-pages/man2/set_tid_address.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_tid_address\b) | 0x102 | int \*tidptr | - | - | - | - | - |
| <a name="i686_259"></a> [259](#i686_259) | timer_create | [man/](https://man7.org/linux/man-pages/man2/timer_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_create\b) | 0x103 | clockid\_t which\_clock | struct sigevent \*timer\_event\_spec | timer\_t \* created\_timer\_id | - | - | - |
| <a name="i686_260"></a> [260](#i686_260) | timer_settime | [man/](https://man7.org/linux/man-pages/man2/timer_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_settime\b) | 0x104 | timer\_t timer\_id | int flags | const struct \_\_kernel\_itimerspec \*new\_setting | struct \_\_kernel\_itimerspec \*old\_setting | - | - |
| <a name="i686_261"></a> [261](#i686_261) | timer_gettime | [man/](https://man7.org/linux/man-pages/man2/timer_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_gettime\b) | 0x105 | timer\_t timer\_id | struct \_\_kernel\_itimerspec \*setting | - | - | - | - |
| <a name="i686_262"></a> [262](#i686_262) | timer_getoverrun | [man/](https://man7.org/linux/man-pages/man2/timer_getoverrun.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_getoverrun\b) | 0x106 | timer\_t timer\_id | - | - | - | - | - |
| <a name="i686_263"></a> [263](#i686_263) | timer_delete | [man/](https://man7.org/linux/man-pages/man2/timer_delete.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_delete\b) | 0x107 | timer\_t timer\_id | - | - | - | - | - |
| <a name="i686_264"></a> [264](#i686_264) | clock_settime | [man/](https://man7.org/linux/man-pages/man2/clock_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_settime\b) | 0x108 | clockid\_t which\_clock | const struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="i686_265"></a> [265](#i686_265) | clock_gettime | [man/](https://man7.org/linux/man-pages/man2/clock_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_gettime\b) | 0x109 | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="i686_266"></a> [266](#i686_266) | clock_getres | [man/](https://man7.org/linux/man-pages/man2/clock_getres.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_getres\b) | 0x10a | clockid\_t which\_clock | struct \_\_kernel\_timespec \*tp | - | - | - | - |
| <a name="i686_267"></a> [267](#i686_267) | clock_nanosleep | [man/](https://man7.org/linux/man-pages/man2/clock_nanosleep.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_nanosleep\b) | 0x10b | clockid\_t which\_clock | int flags | const struct \_\_kernel\_timespec \*rqtp | struct \_\_kernel\_timespec \*rmtp | - | - |
| <a name="i686_268"></a> [268](#i686_268) | statfs64 | [man/](https://man7.org/linux/man-pages/man2/statfs64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatfs64\b) | 0x10c | const char \*path | size\_t sz | struct statfs64 \*buf | - | - | - |
| <a name="i686_269"></a> [269](#i686_269) | fstatfs64 | [man/](https://man7.org/linux/man-pages/man2/fstatfs64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatfs64\b) | 0x10d | unsigned int fd | size\_t sz | struct statfs64 \*buf | - | - | - |
| <a name="i686_270"></a> [270](#i686_270) | tgkill | [man/](https://man7.org/linux/man-pages/man2/tgkill.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btgkill\b) | 0x10e | pid\_t tgid | pid\_t pid | int sig | - | - | - |
| <a name="i686_271"></a> [271](#i686_271) | utimes | [man/](https://man7.org/linux/man-pages/man2/utimes.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimes\b) | 0x10f | char \*filename | struct \_\_kernel\_old\_timeval \*utimes | - | - | - | - |
| <a name="i686_272"></a> [272](#i686_272) | fadvise64_64 | [man/](https://man7.org/linux/man-pages/man2/fadvise64_64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfadvise64_64\b) | 0x110 | int fd | loff\_t offset | loff\_t len | int advice | - | - |
| <a name="i686_273"></a> [273](#i686_273) | vserver | [man/](https://man7.org/linux/man-pages/man2/vserver.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvserver\b) | 0x111 | ? | ? | ? | ? | ? | ? |
| <a name="i686_274"></a> [274](#i686_274) | mbind | [man/](https://man7.org/linux/man-pages/man2/mbind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmbind\b) | 0x112 | unsigned long start | unsigned long len | unsigned long mode | const unsigned long \*nmask | unsigned long maxnode | unsigned flags |
| <a name="i686_275"></a> [275](#i686_275) | get_mempolicy | [man/](https://man7.org/linux/man-pages/man2/get_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_mempolicy\b) | 0x113 | int \*policy | unsigned long \*nmask | unsigned long maxnode | unsigned long addr | unsigned long flags | - |
| <a name="i686_276"></a> [276](#i686_276) | set_mempolicy | [man/](https://man7.org/linux/man-pages/man2/set_mempolicy.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_mempolicy\b) | 0x114 | int mode | const unsigned long \*nmask | unsigned long maxnode | - | - | - |
| <a name="i686_277"></a> [277](#i686_277) | mq_open | [man/](https://man7.org/linux/man-pages/man2/mq_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_open\b) | 0x115 | const char \*name | int oflag | umode\_t mode | struct mq\_attr \*attr | - | - |
| <a name="i686_278"></a> [278](#i686_278) | mq_unlink | [man/](https://man7.org/linux/man-pages/man2/mq_unlink.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_unlink\b) | 0x116 | const char \*name | - | - | - | - | - |
| <a name="i686_279"></a> [279](#i686_279) | mq_timedsend | [man/](https://man7.org/linux/man-pages/man2/mq_timedsend.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedsend\b) | 0x117 | mqd\_t mqdes | const char \*msg\_ptr | size\_t msg\_len | unsigned int msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="i686_280"></a> [280](#i686_280) | mq_timedreceive | [man/](https://man7.org/linux/man-pages/man2/mq_timedreceive.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedreceive\b) | 0x118 | mqd\_t mqdes | char \*msg\_ptr | size\_t msg\_len | unsigned int \*msg\_prio | const struct \_\_kernel\_timespec \*abs\_timeout | - |
| <a name="i686_281"></a> [281](#i686_281) | mq_notify | [man/](https://man7.org/linux/man-pages/man2/mq_notify.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_notify\b) | 0x119 | mqd\_t mqdes | const struct sigevent \*notification | - | - | - | - |
| <a name="i686_282"></a> [282](#i686_282) | mq_getsetattr | [man/](https://man7.org/linux/man-pages/man2/mq_getsetattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_getsetattr\b) | 0x11a | mqd\_t mqdes | const struct mq\_attr \*mqstat | struct mq\_attr \*omqstat | - | - | - |
| <a name="i686_283"></a> [283](#i686_283) | kexec_load | [man/](https://man7.org/linux/man-pages/man2/kexec_load.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkexec_load\b) | 0x11b | unsigned long entry | unsigned long nr\_segments | struct kexec\_segment \*segments | unsigned long flags | - | - |
| <a name="i686_284"></a> [284](#i686_284) | waitid | [man/](https://man7.org/linux/man-pages/man2/waitid.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bwaitid\b) | 0x11c | int which | pid\_t pid | struct siginfo \*infop | int options | struct rusage \*ru | - |
| <a name="i686_285"></a> [285](#i686_285) | *not implemented* | | 0x11d ||
| <a name="i686_286"></a> [286](#i686_286) | add_key | [man/](https://man7.org/linux/man-pages/man2/add_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\badd_key\b) | 0x11e | const char \*\_type | const char \*\_description | const void \*\_payload | size\_t plen | key\_serial\_t destringid | - |
| <a name="i686_287"></a> [287](#i686_287) | request_key | [man/](https://man7.org/linux/man-pages/man2/request_key.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brequest_key\b) | 0x11f | const char \*\_type | const char \*\_description | const char \*\_callout\_info | key\_serial\_t destringid | - | - |
| <a name="i686_288"></a> [288](#i686_288) | keyctl | [man/](https://man7.org/linux/man-pages/man2/keyctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkeyctl\b) | 0x120 | int cmd | unsigned long arg2 | unsigned long arg3 | unsigned long arg4 | unsigned long arg5 | - |
| <a name="i686_289"></a> [289](#i686_289) | ioprio_set | [man/](https://man7.org/linux/man-pages/man2/ioprio_set.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_set\b) | 0x121 | int which | int who | int ioprio | - | - | - |
| <a name="i686_290"></a> [290](#i686_290) | ioprio_get | [man/](https://man7.org/linux/man-pages/man2/ioprio_get.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bioprio_get\b) | 0x122 | int which | int who | - | - | - | - |
| <a name="i686_291"></a> [291](#i686_291) | inotify_init | [man/](https://man7.org/linux/man-pages/man2/inotify_init.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_init\b) | 0x123 | - | - | - | - | - | - |
| <a name="i686_292"></a> [292](#i686_292) | inotify_add_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_add_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_add_watch\b) | 0x124 | int fd | const char \*path | u32 mask | - | - | - |
| <a name="i686_293"></a> [293](#i686_293) | inotify_rm_watch | [man/](https://man7.org/linux/man-pages/man2/inotify_rm_watch.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_rm_watch\b) | 0x125 | int fd | \_\_s32 wd | - | - | - | - |
| <a name="i686_294"></a> [294](#i686_294) | migrate_pages | [man/](https://man7.org/linux/man-pages/man2/migrate_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmigrate_pages\b) | 0x126 | pid\_t pid | unsigned long maxnode | const unsigned long \*from | const unsigned long \*to | - | - |
| <a name="i686_295"></a> [295](#i686_295) | openat | [man/](https://man7.org/linux/man-pages/man2/openat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopenat\b) | 0x127 | int dfd | const char \*filename | int flags | umode\_t mode | - | - |
| <a name="i686_296"></a> [296](#i686_296) | mkdirat | [man/](https://man7.org/linux/man-pages/man2/mkdirat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmkdirat\b) | 0x128 | int dfd | const char \* pathname | umode\_t mode | - | - | - |
| <a name="i686_297"></a> [297](#i686_297) | mknodat | [man/](https://man7.org/linux/man-pages/man2/mknodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmknodat\b) | 0x129 | int dfd | const char \* filename | umode\_t mode | unsigned dev | - | - |
| <a name="i686_298"></a> [298](#i686_298) | fchownat | [man/](https://man7.org/linux/man-pages/man2/fchownat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchownat\b) | 0x12a | int dfd | const char \*filename | uid\_t user | gid\_t group | int flag | - |
| <a name="i686_299"></a> [299](#i686_299) | futimesat | [man/](https://man7.org/linux/man-pages/man2/futimesat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutimesat\b) | 0x12b | int dfd | const char \*filename | struct \_\_kernel\_old\_timeval \*utimes | - | - | - |
| <a name="i686_300"></a> [300](#i686_300) | fstatat64 | [man/](https://man7.org/linux/man-pages/man2/fstatat64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfstatat64\b) | 0x12c | int dfd | const char \*filename | struct stat64 \*statbuf | int flag | - | - |
| <a name="i686_301"></a> [301](#i686_301) | unlinkat | [man/](https://man7.org/linux/man-pages/man2/unlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunlinkat\b) | 0x12d | int dfd | const char \* pathname | int flag | - | - | - |
| <a name="i686_302"></a> [302](#i686_302) | renameat | [man/](https://man7.org/linux/man-pages/man2/renameat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat\b) | 0x12e | int olddfd | const char \* oldname | int newdfd | const char \* newname | - | - |
| <a name="i686_303"></a> [303](#i686_303) | linkat | [man/](https://man7.org/linux/man-pages/man2/linkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blinkat\b) | 0x12f | int olddfd | const char \*oldname | int newdfd | const char \*newname | int flags | - |
| <a name="i686_304"></a> [304](#i686_304) | symlinkat | [man/](https://man7.org/linux/man-pages/man2/symlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsymlinkat\b) | 0x130 | const char \* oldname | int newdfd | const char \* newname | - | - | - |
| <a name="i686_305"></a> [305](#i686_305) | readlinkat | [man/](https://man7.org/linux/man-pages/man2/readlinkat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\breadlinkat\b) | 0x131 | int dfd | const char \*path | char \*buf | int bufsiz | - | - |
| <a name="i686_306"></a> [306](#i686_306) | fchmodat | [man/](https://man7.org/linux/man-pages/man2/fchmodat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfchmodat\b) | 0x132 | int dfd | const char \*filename | umode\_t mode | - | - | - |
| <a name="i686_307"></a> [307](#i686_307) | faccessat | [man/](https://man7.org/linux/man-pages/man2/faccessat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat\b) | 0x133 | int dfd | const char \*filename | int mode | - | - | - |
| <a name="i686_308"></a> [308](#i686_308) | pselect6 | [man/](https://man7.org/linux/man-pages/man2/pselect6.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpselect6\b) | 0x134 | int | fd\_set \* | fd\_set \* | fd\_set \* | struct \_\_kernel\_timespec \* | void \* |
| <a name="i686_309"></a> [309](#i686_309) | ppoll | [man/](https://man7.org/linux/man-pages/man2/ppoll.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bppoll\b) | 0x135 | struct pollfd \* | unsigned int | struct \_\_kernel\_timespec \* | const sigset\_t \* | size\_t | - |
| <a name="i686_310"></a> [310](#i686_310) | unshare | [man/](https://man7.org/linux/man-pages/man2/unshare.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bunshare\b) | 0x136 | unsigned long unshare\_flags | - | - | - | - | - |
| <a name="i686_311"></a> [311](#i686_311) | set_robust_list | [man/](https://man7.org/linux/man-pages/man2/set_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bset_robust_list\b) | 0x137 | struct robust\_list\_head \*head | size\_t len | - | - | - | - |
| <a name="i686_312"></a> [312](#i686_312) | get_robust_list | [man/](https://man7.org/linux/man-pages/man2/get_robust_list.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bget_robust_list\b) | 0x138 | int pid | struct robust\_list\_head \* \*head\_ptr | size\_t \*len\_ptr | - | - | - |
| <a name="i686_313"></a> [313](#i686_313) | splice | [man/](https://man7.org/linux/man-pages/man2/splice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsplice\b) | 0x139 | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="i686_314"></a> [314](#i686_314) | sync_file_range | [man/](https://man7.org/linux/man-pages/man2/sync_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsync_file_range\b) | 0x13a | int fd | loff\_t offset | loff\_t nbytes | unsigned int flags | - | - |
| <a name="i686_315"></a> [315](#i686_315) | tee | [man/](https://man7.org/linux/man-pages/man2/tee.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btee\b) | 0x13b | int fdin | int fdout | size\_t len | unsigned int flags | - | - |
| <a name="i686_316"></a> [316](#i686_316) | vmsplice | [man/](https://man7.org/linux/man-pages/man2/vmsplice.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bvmsplice\b) | 0x13c | int fd | const struct iovec \*iov | unsigned long nr\_segs | unsigned int flags | - | - |
| <a name="i686_317"></a> [317](#i686_317) | move_pages | [man/](https://man7.org/linux/man-pages/man2/move_pages.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_pages\b) | 0x13d | pid\_t pid | unsigned long nr\_pages | const void \* \*pages | const int \*nodes | int \*status | int flags |
| <a name="i686_318"></a> [318](#i686_318) | getcpu | [man/](https://man7.org/linux/man-pages/man2/getcpu.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetcpu\b) | 0x13e | unsigned \*cpu | unsigned \*node | struct getcpu\_cache \*cache | - | - | - |
| <a name="i686_319"></a> [319](#i686_319) | epoll_pwait | [man/](https://man7.org/linux/man-pages/man2/epoll_pwait.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_pwait\b) | 0x13f | int epfd | struct epoll\_event \*events | int maxevents | int timeout | const sigset\_t \*sigmask | size\_t sigsetsize |
| <a name="i686_320"></a> [320](#i686_320) | utimensat | [man/](https://man7.org/linux/man-pages/man2/utimensat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimensat\b) | 0x140 | int dfd | const char \*filename | struct \_\_kernel\_timespec \*utimes | int flags | - | - |
| <a name="i686_321"></a> [321](#i686_321) | signalfd | [man/](https://man7.org/linux/man-pages/man2/signalfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignalfd\b) | 0x141 | int ufd | sigset\_t \*user\_mask | size\_t sizemask | - | - | - |
| <a name="i686_322"></a> [322](#i686_322) | timerfd_create | [man/](https://man7.org/linux/man-pages/man2/timerfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_create\b) | 0x142 | int clockid | int flags | - | - | - | - |
| <a name="i686_323"></a> [323](#i686_323) | eventfd | [man/](https://man7.org/linux/man-pages/man2/eventfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\beventfd\b) | 0x143 | unsigned int count | - | - | - | - | - |
| <a name="i686_324"></a> [324](#i686_324) | fallocate | [man/](https://man7.org/linux/man-pages/man2/fallocate.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfallocate\b) | 0x144 | int fd | int mode | loff\_t offset | loff\_t len | - | - |
| <a name="i686_325"></a> [325](#i686_325) | timerfd_settime | [man/](https://man7.org/linux/man-pages/man2/timerfd_settime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_settime\b) | 0x145 | int ufd | int flags | const struct \_\_kernel\_itimerspec \*utmr | struct \_\_kernel\_itimerspec \*otmr | - | - |
| <a name="i686_326"></a> [326](#i686_326) | timerfd_gettime | [man/](https://man7.org/linux/man-pages/man2/timerfd_gettime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_gettime\b) | 0x146 | int ufd | struct \_\_kernel\_itimerspec \*otmr | - | - | - | - |
| <a name="i686_327"></a> [327](#i686_327) | signalfd4 | [man/](https://man7.org/linux/man-pages/man2/signalfd4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsignalfd4\b) | 0x147 | int ufd | sigset\_t \*user\_mask | size\_t sizemask | int flags | - | - |
| <a name="i686_328"></a> [328](#i686_328) | eventfd2 | [man/](https://man7.org/linux/man-pages/man2/eventfd2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\beventfd2\b) | 0x148 | unsigned int count | int flags | - | - | - | - |
| <a name="i686_329"></a> [329](#i686_329) | epoll_create1 | [man/](https://man7.org/linux/man-pages/man2/epoll_create1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bepoll_create1\b) | 0x149 | int flags | - | - | - | - | - |
| <a name="i686_330"></a> [330](#i686_330) | dup3 | [man/](https://man7.org/linux/man-pages/man2/dup3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bdup3\b) | 0x14a | unsigned int oldfd | unsigned int newfd | int flags | - | - | - |
| <a name="i686_331"></a> [331](#i686_331) | pipe2 | [man/](https://man7.org/linux/man-pages/man2/pipe2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpipe2\b) | 0x14b | int \*fildes | int flags | - | - | - | - |
| <a name="i686_332"></a> [332](#i686_332) | inotify_init1 | [man/](https://man7.org/linux/man-pages/man2/inotify_init1.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\binotify_init1\b) | 0x14c | int flags | - | - | - | - | - |
| <a name="i686_333"></a> [333](#i686_333) | preadv | [man/](https://man7.org/linux/man-pages/man2/preadv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv\b) | 0x14d | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="i686_334"></a> [334](#i686_334) | pwritev | [man/](https://man7.org/linux/man-pages/man2/pwritev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev\b) | 0x14e | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | - |
| <a name="i686_335"></a> [335](#i686_335) | rt_tgsigqueueinfo | [man/](https://man7.org/linux/man-pages/man2/rt_tgsigqueueinfo.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_tgsigqueueinfo\b) | 0x14f | pid\_t tgid | pid\_t pid | int sig | siginfo\_t \*uinfo | - | - |
| <a name="i686_336"></a> [336](#i686_336) | perf_event_open | [man/](https://man7.org/linux/man-pages/man2/perf_event_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bperf_event_open\b) | 0x150 | struct perf\_event\_attr \*attr\_uptr | pid\_t pid | int cpu | int group\_fd | unsigned long flags | - |
| <a name="i686_337"></a> [337](#i686_337) | recvmmsg | [man/](https://man7.org/linux/man-pages/man2/recvmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmmsg\b) | 0x151 | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | struct \_\_kernel\_timespec \*timeout | - |
| <a name="i686_338"></a> [338](#i686_338) | fanotify_init | [man/](https://man7.org/linux/man-pages/man2/fanotify_init.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_init\b) | 0x152 | unsigned int flags | unsigned int event\_f\_flags | - | - | - | - |
| <a name="i686_339"></a> [339](#i686_339) | fanotify_mark | [man/](https://man7.org/linux/man-pages/man2/fanotify_mark.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfanotify_mark\b) | 0x153 | int fanotify\_fd | unsigned int flags | u64 mask | int fd | const char \*pathname | - |
| <a name="i686_340"></a> [340](#i686_340) | prlimit64 | [man/](https://man7.org/linux/man-pages/man2/prlimit64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprlimit64\b) | 0x154 | pid\_t pid | unsigned int resource | const struct rlimit64 \*new\_rlim | struct rlimit64 \*old\_rlim | - | - |
| <a name="i686_341"></a> [341](#i686_341) | name_to_handle_at | [man/](https://man7.org/linux/man-pages/man2/name_to_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bname_to_handle_at\b) | 0x155 | int dfd | const char \*name | struct file\_handle \*handle | void \*mnt\_id | int flag | - |
| <a name="i686_342"></a> [342](#i686_342) | open_by_handle_at | [man/](https://man7.org/linux/man-pages/man2/open_by_handle_at.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_by_handle_at\b) | 0x156 | int mountdirfd | struct file\_handle \*handle | int flags | - | - | - |
| <a name="i686_343"></a> [343](#i686_343) | clock_adjtime | [man/](https://man7.org/linux/man-pages/man2/clock_adjtime.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_adjtime\b) | 0x157 | clockid\_t which\_clock | struct \_\_kernel\_timex \*tx | - | - | - | - |
| <a name="i686_344"></a> [344](#i686_344) | syncfs | [man/](https://man7.org/linux/man-pages/man2/syncfs.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsyncfs\b) | 0x158 | int fd | - | - | - | - | - |
| <a name="i686_345"></a> [345](#i686_345) | sendmmsg | [man/](https://man7.org/linux/man-pages/man2/sendmmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmmsg\b) | 0x159 | int fd | struct mmsghdr \*msg | unsigned int vlen | unsigned flags | - | - |
| <a name="i686_346"></a> [346](#i686_346) | setns | [man/](https://man7.org/linux/man-pages/man2/setns.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetns\b) | 0x15a | int fd | int nstype | - | - | - | - |
| <a name="i686_347"></a> [347](#i686_347) | process_vm_readv | [man/](https://man7.org/linux/man-pages/man2/process_vm_readv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_readv\b) | 0x15b | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="i686_348"></a> [348](#i686_348) | process_vm_writev | [man/](https://man7.org/linux/man-pages/man2/process_vm_writev.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bprocess_vm_writev\b) | 0x15c | pid\_t pid | const struct iovec \*lvec | unsigned long liovcnt | const struct iovec \*rvec | unsigned long riovcnt | unsigned long flags |
| <a name="i686_349"></a> [349](#i686_349) | kcmp | [man/](https://man7.org/linux/man-pages/man2/kcmp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bkcmp\b) | 0x15d | pid\_t pid1 | pid\_t pid2 | int type | unsigned long idx1 | unsigned long idx2 | - |
| <a name="i686_350"></a> [350](#i686_350) | finit_module | [man/](https://man7.org/linux/man-pages/man2/finit_module.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfinit_module\b) | 0x15e | int fd | const char \*uargs | int flags | - | - | - |
| <a name="i686_351"></a> [351](#i686_351) | sched_setattr | [man/](https://man7.org/linux/man-pages/man2/sched_setattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_setattr\b) | 0x15f | pid\_t pid | struct sched\_attr \*attr | unsigned int flags | - | - | - |
| <a name="i686_352"></a> [352](#i686_352) | sched_getattr | [man/](https://man7.org/linux/man-pages/man2/sched_getattr.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_getattr\b) | 0x160 | pid\_t pid | struct sched\_attr \*attr | unsigned int size | unsigned int flags | - | - |
| <a name="i686_353"></a> [353](#i686_353) | renameat2 | [man/](https://man7.org/linux/man-pages/man2/renameat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brenameat2\b) | 0x161 | int olddfd | const char \*oldname | int newdfd | const char \*newname | unsigned int flags | - |
| <a name="i686_354"></a> [354](#i686_354) | seccomp | [man/](https://man7.org/linux/man-pages/man2/seccomp.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bseccomp\b) | 0x162 | unsigned int op | unsigned int flags | void \*uargs | - | - | - |
| <a name="i686_355"></a> [355](#i686_355) | getrandom | [man/](https://man7.org/linux/man-pages/man2/getrandom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetrandom\b) | 0x163 | char \*buf | size\_t count | unsigned int flags | - | - | - |
| <a name="i686_356"></a> [356](#i686_356) | memfd_create | [man/](https://man7.org/linux/man-pages/man2/memfd_create.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmemfd_create\b) | 0x164 | const char \*uname\_ptr | unsigned int flags | - | - | - | - |
| <a name="i686_357"></a> [357](#i686_357) | bpf | [man/](https://man7.org/linux/man-pages/man2/bpf.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbpf\b) | 0x165 | int cmd | union bpf\_attr \*attr | unsigned int size | - | - | - |
| <a name="i686_358"></a> [358](#i686_358) | execveat | [man/](https://man7.org/linux/man-pages/man2/execveat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bexecveat\b) | 0x166 | int dfd | const char \*filename | const char \*const \*argv | const char \*const \*envp | int flags | - |
| <a name="i686_359"></a> [359](#i686_359) | socket | [man/](https://man7.org/linux/man-pages/man2/socket.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocket\b) | 0x167 | int | int | int | - | - | - |
| <a name="i686_360"></a> [360](#i686_360) | socketpair | [man/](https://man7.org/linux/man-pages/man2/socketpair.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsocketpair\b) | 0x168 | int | int | int | int \* | - | - |
| <a name="i686_361"></a> [361](#i686_361) | bind | [man/](https://man7.org/linux/man-pages/man2/bind.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bbind\b) | 0x169 | int | struct sockaddr \* | int | - | - | - |
| <a name="i686_362"></a> [362](#i686_362) | connect | [man/](https://man7.org/linux/man-pages/man2/connect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bconnect\b) | 0x16a | int | struct sockaddr \* | int | - | - | - |
| <a name="i686_363"></a> [363](#i686_363) | listen | [man/](https://man7.org/linux/man-pages/man2/listen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\blisten\b) | 0x16b | int | int | - | - | - | - |
| <a name="i686_364"></a> [364](#i686_364) | accept4 | [man/](https://man7.org/linux/man-pages/man2/accept4.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\baccept4\b) | 0x16c | int | struct sockaddr \* | int \* | int | - | - |
| <a name="i686_365"></a> [365](#i686_365) | getsockopt | [man/](https://man7.org/linux/man-pages/man2/getsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockopt\b) | 0x16d | int fd | int level | int optname | char \*optval | int \*optlen | - |
| <a name="i686_366"></a> [366](#i686_366) | setsockopt | [man/](https://man7.org/linux/man-pages/man2/setsockopt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsetsockopt\b) | 0x16e | int fd | int level | int optname | char \*optval | int optlen | - |
| <a name="i686_367"></a> [367](#i686_367) | getsockname | [man/](https://man7.org/linux/man-pages/man2/getsockname.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetsockname\b) | 0x16f | int | struct sockaddr \* | int \* | - | - | - |
| <a name="i686_368"></a> [368](#i686_368) | getpeername | [man/](https://man7.org/linux/man-pages/man2/getpeername.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bgetpeername\b) | 0x170 | int | struct sockaddr \* | int \* | - | - | - |
| <a name="i686_369"></a> [369](#i686_369) | sendto | [man/](https://man7.org/linux/man-pages/man2/sendto.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendto\b) | 0x171 | int | void \* | size\_t | unsigned | struct sockaddr \* | int |
| <a name="i686_370"></a> [370](#i686_370) | sendmsg | [man/](https://man7.org/linux/man-pages/man2/sendmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsendmsg\b) | 0x172 | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="i686_371"></a> [371](#i686_371) | recvfrom | [man/](https://man7.org/linux/man-pages/man2/recvfrom.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvfrom\b) | 0x173 | int | void \* | size\_t | unsigned | struct sockaddr \* | int \* |
| <a name="i686_372"></a> [372](#i686_372) | recvmsg | [man/](https://man7.org/linux/man-pages/man2/recvmsg.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmsg\b) | 0x174 | int fd | struct user\_msghdr \*msg | unsigned flags | - | - | - |
| <a name="i686_373"></a> [373](#i686_373) | shutdown | [man/](https://man7.org/linux/man-pages/man2/shutdown.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshutdown\b) | 0x175 | int | int | - | - | - | - |
| <a name="i686_374"></a> [374](#i686_374) | userfaultfd | [man/](https://man7.org/linux/man-pages/man2/userfaultfd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\buserfaultfd\b) | 0x176 | int flags | - | - | - | - | - |
| <a name="i686_375"></a> [375](#i686_375) | membarrier | [man/](https://man7.org/linux/man-pages/man2/membarrier.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmembarrier\b) | 0x177 | int cmd | unsigned int flags | int cpu\_id | - | - | - |
| <a name="i686_376"></a> [376](#i686_376) | mlock2 | [man/](https://man7.org/linux/man-pages/man2/mlock2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmlock2\b) | 0x178 | unsigned long start | size\_t len | int flags | - | - | - |
| <a name="i686_377"></a> [377](#i686_377) | copy_file_range | [man/](https://man7.org/linux/man-pages/man2/copy_file_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bcopy_file_range\b) | 0x179 | int fd\_in | loff\_t \*off\_in | int fd\_out | loff\_t \*off\_out | size\_t len | unsigned int flags |
| <a name="i686_378"></a> [378](#i686_378) | preadv2 | [man/](https://man7.org/linux/man-pages/man2/preadv2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpreadv2\b) | 0x17a | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="i686_379"></a> [379](#i686_379) | pwritev2 | [man/](https://man7.org/linux/man-pages/man2/pwritev2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpwritev2\b) | 0x17b | unsigned long fd | const struct iovec \*vec | unsigned long vlen | unsigned long pos\_l | unsigned long pos\_h | rwf\_t flags |
| <a name="i686_380"></a> [380](#i686_380) | pkey_mprotect | [man/](https://man7.org/linux/man-pages/man2/pkey_mprotect.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_mprotect\b) | 0x17c | unsigned long start | size\_t len | unsigned long prot | int pkey | - | - |
| <a name="i686_381"></a> [381](#i686_381) | pkey_alloc | [man/](https://man7.org/linux/man-pages/man2/pkey_alloc.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_alloc\b) | 0x17d | unsigned long flags | unsigned long init\_val | - | - | - | - |
| <a name="i686_382"></a> [382](#i686_382) | pkey_free | [man/](https://man7.org/linux/man-pages/man2/pkey_free.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpkey_free\b) | 0x17e | int pkey | - | - | - | - | - |
| <a name="i686_383"></a> [383](#i686_383) | statx | [man/](https://man7.org/linux/man-pages/man2/statx.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bstatx\b) | 0x17f | int dfd | const char \*path | unsigned flags | unsigned mask | struct statx \*buffer | - |
| <a name="i686_384"></a> [384](#i686_384) | arch_prctl | [man/](https://man7.org/linux/man-pages/man2/arch_prctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\barch_prctl\b) | 0x180 | ? | ? | ? | ? | ? | ? |
| <a name="i686_385"></a> [385](#i686_385) | io_pgetevents | [man/](https://man7.org/linux/man-pages/man2/io_pgetevents.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_pgetevents\b) | 0x181 | aio\_context\_t ctx\_id | long min\_nr | long nr | struct io\_event \*events | struct \_\_kernel\_timespec \*timeout | const struct \_\_aio\_sigset \*sig |
| <a name="i686_386"></a> [386](#i686_386) | rseq | [man/](https://man7.org/linux/man-pages/man2/rseq.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brseq\b) | 0x182 | struct rseq \*rseq | uint32\_t rseq\_len | int flags | uint32\_t sig | - | - |
| <a name="i686_387"></a> [387](#i686_387) | *not implemented* | | 0x183 ||
| <a name="i686_388"></a> [388](#i686_388) | *not implemented* | | 0x184 ||
| <a name="i686_389"></a> [389](#i686_389) | *not implemented* | | 0x185 ||
| <a name="i686_390"></a> [390](#i686_390) | *not implemented* | | 0x186 ||
| <a name="i686_391"></a> [391](#i686_391) | *not implemented* | | 0x187 ||
| <a name="i686_392"></a> [392](#i686_392) | *not implemented* | | 0x188 ||
| <a name="i686_393"></a> [393](#i686_393) | semget | [man/](https://man7.org/linux/man-pages/man2/semget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemget\b) | 0x189 | key\_t key | int nsems | int semflg | - | - | - |
| <a name="i686_394"></a> [394](#i686_394) | semctl | [man/](https://man7.org/linux/man-pages/man2/semctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemctl\b) | 0x18a | int semid | int semnum | int cmd | unsigned long arg | - | - |
| <a name="i686_395"></a> [395](#i686_395) | shmget | [man/](https://man7.org/linux/man-pages/man2/shmget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmget\b) | 0x18b | key\_t key | size\_t size | int flag | - | - | - |
| <a name="i686_396"></a> [396](#i686_396) | shmctl | [man/](https://man7.org/linux/man-pages/man2/shmctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmctl\b) | 0x18c | int shmid | int cmd | struct shmid\_ds \*buf | - | - | - |
| <a name="i686_397"></a> [397](#i686_397) | shmat | [man/](https://man7.org/linux/man-pages/man2/shmat.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmat\b) | 0x18d | int shmid | char \*shmaddr | int shmflg | - | - | - |
| <a name="i686_398"></a> [398](#i686_398) | shmdt | [man/](https://man7.org/linux/man-pages/man2/shmdt.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bshmdt\b) | 0x18e | char \*shmaddr | - | - | - | - | - |
| <a name="i686_399"></a> [399](#i686_399) | msgget | [man/](https://man7.org/linux/man-pages/man2/msgget.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgget\b) | 0x18f | key\_t key | int msgflg | - | - | - | - |
| <a name="i686_400"></a> [400](#i686_400) | msgsnd | [man/](https://man7.org/linux/man-pages/man2/msgsnd.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgsnd\b) | 0x190 | int msqid | struct msgbuf \*msgp | size\_t msgsz | int msgflg | - | - |
| <a name="i686_401"></a> [401](#i686_401) | msgrcv | [man/](https://man7.org/linux/man-pages/man2/msgrcv.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgrcv\b) | 0x191 | int msqid | struct msgbuf \*msgp | size\_t msgsz | long msgtyp | int msgflg | - |
| <a name="i686_402"></a> [402](#i686_402) | msgctl | [man/](https://man7.org/linux/man-pages/man2/msgctl.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmsgctl\b) | 0x192 | int msqid | int cmd | struct msqid\_ds \*buf | - | - | - |
| <a name="i686_403"></a> [403](#i686_403) | clock_gettime64 | [man/](https://man7.org/linux/man-pages/man2/clock_gettime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_gettime64\b) | 0x193 | ? | ? | ? | ? | ? | ? |
| <a name="i686_404"></a> [404](#i686_404) | clock_settime64 | [man/](https://man7.org/linux/man-pages/man2/clock_settime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_settime64\b) | 0x194 | ? | ? | ? | ? | ? | ? |
| <a name="i686_405"></a> [405](#i686_405) | clock_adjtime64 | [man/](https://man7.org/linux/man-pages/man2/clock_adjtime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_adjtime64\b) | 0x195 | ? | ? | ? | ? | ? | ? |
| <a name="i686_406"></a> [406](#i686_406) | clock_getres_time64 | [man/](https://man7.org/linux/man-pages/man2/clock_getres_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_getres_time64\b) | 0x196 | ? | ? | ? | ? | ? | ? |
| <a name="i686_407"></a> [407](#i686_407) | clock_nanosleep_time64 | [man/](https://man7.org/linux/man-pages/man2/clock_nanosleep_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclock_nanosleep_time64\b) | 0x197 | ? | ? | ? | ? | ? | ? |
| <a name="i686_408"></a> [408](#i686_408) | timer_gettime64 | [man/](https://man7.org/linux/man-pages/man2/timer_gettime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_gettime64\b) | 0x198 | ? | ? | ? | ? | ? | ? |
| <a name="i686_409"></a> [409](#i686_409) | timer_settime64 | [man/](https://man7.org/linux/man-pages/man2/timer_settime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimer_settime64\b) | 0x199 | ? | ? | ? | ? | ? | ? |
| <a name="i686_410"></a> [410](#i686_410) | timerfd_gettime64 | [man/](https://man7.org/linux/man-pages/man2/timerfd_gettime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_gettime64\b) | 0x19a | ? | ? | ? | ? | ? | ? |
| <a name="i686_411"></a> [411](#i686_411) | timerfd_settime64 | [man/](https://man7.org/linux/man-pages/man2/timerfd_settime64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\btimerfd_settime64\b) | 0x19b | ? | ? | ? | ? | ? | ? |
| <a name="i686_412"></a> [412](#i686_412) | utimensat_time64 | [man/](https://man7.org/linux/man-pages/man2/utimensat_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\butimensat_time64\b) | 0x19c | ? | ? | ? | ? | ? | ? |
| <a name="i686_413"></a> [413](#i686_413) | pselect6_time64 | [man/](https://man7.org/linux/man-pages/man2/pselect6_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpselect6_time64\b) | 0x19d | ? | ? | ? | ? | ? | ? |
| <a name="i686_414"></a> [414](#i686_414) | ppoll_time64 | [man/](https://man7.org/linux/man-pages/man2/ppoll_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bppoll_time64\b) | 0x19e | ? | ? | ? | ? | ? | ? |
| <a name="i686_415"></a> [415](#i686_415) | *not implemented* | | 0x19f ||
| <a name="i686_416"></a> [416](#i686_416) | io_pgetevents_time64 | [man/](https://man7.org/linux/man-pages/man2/io_pgetevents_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_pgetevents_time64\b) | 0x1a0 | ? | ? | ? | ? | ? | ? |
| <a name="i686_417"></a> [417](#i686_417) | recvmmsg_time64 | [man/](https://man7.org/linux/man-pages/man2/recvmmsg_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brecvmmsg_time64\b) | 0x1a1 | ? | ? | ? | ? | ? | ? |
| <a name="i686_418"></a> [418](#i686_418) | mq_timedsend_time64 | [man/](https://man7.org/linux/man-pages/man2/mq_timedsend_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedsend_time64\b) | 0x1a2 | ? | ? | ? | ? | ? | ? |
| <a name="i686_419"></a> [419](#i686_419) | mq_timedreceive_time64 | [man/](https://man7.org/linux/man-pages/man2/mq_timedreceive_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmq_timedreceive_time64\b) | 0x1a3 | ? | ? | ? | ? | ? | ? |
| <a name="i686_420"></a> [420](#i686_420) | semtimedop_time64 | [man/](https://man7.org/linux/man-pages/man2/semtimedop_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsemtimedop_time64\b) | 0x1a4 | ? | ? | ? | ? | ? | ? |
| <a name="i686_421"></a> [421](#i686_421) | rt_sigtimedwait_time64 | [man/](https://man7.org/linux/man-pages/man2/rt_sigtimedwait_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\brt_sigtimedwait_time64\b) | 0x1a5 | ? | ? | ? | ? | ? | ? |
| <a name="i686_422"></a> [422](#i686_422) | futex_time64 | [man/](https://man7.org/linux/man-pages/man2/futex_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfutex_time64\b) | 0x1a6 | ? | ? | ? | ? | ? | ? |
| <a name="i686_423"></a> [423](#i686_423) | sched_rr_get_interval_time64 | [man/](https://man7.org/linux/man-pages/man2/sched_rr_get_interval_time64.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bsched_rr_get_interval_time64\b) | 0x1a7 | ? | ? | ? | ? | ? | ? |
| <a name="i686_424"></a> [424](#i686_424) | pidfd_send_signal | [man/](https://man7.org/linux/man-pages/man2/pidfd_send_signal.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_send_signal\b) | 0x1a8 | int pidfd | int sig | siginfo\_t \*info | unsigned int flags | - | - |
| <a name="i686_425"></a> [425](#i686_425) | io_uring_setup | [man/](https://man7.org/linux/man-pages/man2/io_uring_setup.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_setup\b) | 0x1a9 | u32 entries | struct io\_uring\_params \*p | - | - | - | - |
| <a name="i686_426"></a> [426](#i686_426) | io_uring_enter | [man/](https://man7.org/linux/man-pages/man2/io_uring_enter.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_enter\b) | 0x1aa | unsigned int fd | u32 to\_submit | u32 min\_complete | u32 flags | const void \*argp | size\_t argsz |
| <a name="i686_427"></a> [427](#i686_427) | io_uring_register | [man/](https://man7.org/linux/man-pages/man2/io_uring_register.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bio_uring_register\b) | 0x1ab | unsigned int fd | unsigned int op | void \*arg | unsigned int nr\_args | - | - |
| <a name="i686_428"></a> [428](#i686_428) | open_tree | [man/](https://man7.org/linux/man-pages/man2/open_tree.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bopen_tree\b) | 0x1ac | int dfd | const char \*path | unsigned flags | - | - | - |
| <a name="i686_429"></a> [429](#i686_429) | move_mount | [man/](https://man7.org/linux/man-pages/man2/move_mount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bmove_mount\b) | 0x1ad | int from\_dfd | const char \*from\_path | int to\_dfd | const char \*to\_path | unsigned int ms\_flags | - |
| <a name="i686_430"></a> [430](#i686_430) | fsopen | [man/](https://man7.org/linux/man-pages/man2/fsopen.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsopen\b) | 0x1ae | const char \*fs\_name | unsigned int flags | - | - | - | - |
| <a name="i686_431"></a> [431](#i686_431) | fsconfig | [man/](https://man7.org/linux/man-pages/man2/fsconfig.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsconfig\b) | 0x1af | int fs\_fd | unsigned int cmd | const char \*key | const void \*value | int aux | - |
| <a name="i686_432"></a> [432](#i686_432) | fsmount | [man/](https://man7.org/linux/man-pages/man2/fsmount.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfsmount\b) | 0x1b0 | int fs\_fd | unsigned int flags | unsigned int ms\_flags | - | - | - |
| <a name="i686_433"></a> [433](#i686_433) | fspick | [man/](https://man7.org/linux/man-pages/man2/fspick.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfspick\b) | 0x1b1 | int dfd | const char \*path | unsigned int flags | - | - | - |
| <a name="i686_434"></a> [434](#i686_434) | pidfd_open | [man/](https://man7.org/linux/man-pages/man2/pidfd_open.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bpidfd_open\b) | 0x1b2 | pid\_t pid | unsigned int flags | - | - | - | - |
| <a name="i686_435"></a> [435](#i686_435) | clone3 | [man/](https://man7.org/linux/man-pages/man2/clone3.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclone3\b) | 0x1b3 | struct clone\_args \*uargs | size\_t size | - | - | - | - |
| <a name="i686_436"></a> [436](#i686_436) | close_range | [man/](https://man7.org/linux/man-pages/man2/close_range.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bclose_range\b) | 0x1b4 | unsigned int fd | unsigned int max\_fd | unsigned int flags | - | - | - |
| <a name="i686_437"></a> [437](#i686_437) | *not implemented* | | 0x1b5 ||
| <a name="i686_438"></a> [438](#i686_438) | *not implemented* | | 0x1b6 ||
| <a name="i686_439"></a> [439](#i686_439) | faccessat2 | [man/](https://man7.org/linux/man-pages/man2/faccessat2.2.html) [cs/](https://source.chromium.org/search?ss=chromiumos&q=f:third_party/kernel+SYSCALL_DEFINE[^,]*\bfaccessat2\b) | 0x1b7 | int dfd | const char \*filename | int mode | int flags | - | - |

### Cross-arch Numbers

This shows the syscall numbers for (hopefully) the same syscall name across architectures.
Consult the [Random Names](#random-names) section for common gotchas.

| syscall name | x86_64 | arm | arm64 | x86 |
|---|:---:|:---:|:---:|:---:|
| ARM_breakpoint | - | 983041 | - | - |
| ARM_cacheflush | - | 983042 | - | - |
| ARM_get_tls | - | 983046 | - | - |
| ARM_set_tls | - | 983045 | - | - |
| ARM_usr26 | - | 983043 | - | - |
| ARM_usr32 | - | 983044 | - | - |
| _llseek | - | 140 | - | 140 |
| _newselect | - | 142 | - | 142 |
| _sysctl | 156 | 149 | - | 149 |
| accept | 43 | 285 | 202 | - |
| accept4 | 288 | 366 | 242 | 364 |
| access | 21 | 33 | - | 33 |
| acct | 163 | 51 | 89 | 51 |
| add_key | 248 | 309 | 217 | 286 |
| adjtimex | 159 | 124 | 171 | 124 |
| afs_syscall | 183 | - | - | 137 |
| alarm | 37 | - | - | 27 |
| arch_prctl | 158 | - | - | 384 |
| arm_fadvise64_64 | - | 270 | - | - |
| arm_sync_file_range | - | 341 | - | - |
| bdflush | - | 134 | - | 134 |
| bind | 49 | 282 | 200 | 361 |
| bpf | 321 | 386 | 280 | 357 |
| break | - | - | - | 17 |
| brk | 12 | 45 | 214 | 45 |
| capget | 125 | 184 | 90 | 184 |
| capset | 126 | 185 | 91 | 185 |
| chdir | 80 | 12 | 49 | 12 |
| chmod | 90 | 15 | - | 15 |
| chown | 92 | 182 | - | 182 |
| chown32 | - | 212 | - | 212 |
| chroot | 161 | 61 | 51 | 61 |
| clock_adjtime | 305 | 372 | 266 | 343 |
| clock_adjtime64 | - | 405 | - | 405 |
| clock_getres | 229 | 264 | 114 | 266 |
| clock_getres_time64 | - | 406 | - | 406 |
| clock_gettime | 228 | 263 | 113 | 265 |
| clock_gettime64 | - | 403 | - | 403 |
| clock_nanosleep | 230 | 265 | 115 | 267 |
| clock_nanosleep_time64 | - | 407 | - | 407 |
| clock_settime | 227 | 262 | 112 | 264 |
| clock_settime64 | - | 404 | - | 404 |
| clone | 56 | 120 | 220 | 120 |
| clone3 | 435 | 435 | 435 | 435 |
| close | 3 | 6 | 57 | 6 |
| close_range | 436 | 436 | 436 | 436 |
| connect | 42 | 283 | 203 | 362 |
| copy_file_range | 326 | 391 | 285 | 377 |
| creat | 85 | 8 | - | 8 |
| create_module | 174 | - | - | 127 |
| delete_module | 176 | 129 | 106 | 129 |
| dup | 32 | 41 | 23 | 41 |
| dup2 | 33 | 63 | - | 63 |
| dup3 | 292 | 358 | 24 | 330 |
| epoll_create | 213 | 250 | - | 254 |
| epoll_create1 | 291 | 357 | 20 | 329 |
| epoll_ctl | 233 | 251 | 21 | 255 |
| epoll_ctl_old | 214 | - | - | - |
| epoll_pwait | 281 | 346 | 22 | 319 |
| epoll_wait | 232 | 252 | - | 256 |
| epoll_wait_old | 215 | - | - | - |
| eventfd | 284 | 351 | - | 323 |
| eventfd2 | 290 | 356 | 19 | 328 |
| execve | 59 | 11 | 221 | 11 |
| execveat | 322 | 387 | 281 | 358 |
| exit | 60 | 1 | 93 | 1 |
| exit_group | 231 | 248 | 94 | 252 |
| faccessat | 269 | 334 | 48 | 307 |
| faccessat2 | 439 | 439 | 439 | 439 |
| fadvise64 | 221 | - | 223 | 250 |
| fadvise64_64 | - | - | - | 272 |
| fallocate | 285 | 352 | 47 | 324 |
| fanotify_init | 300 | 367 | 262 | 338 |
| fanotify_mark | 301 | 368 | 263 | 339 |
| fchdir | 81 | 133 | 50 | 133 |
| fchmod | 91 | 94 | 52 | 94 |
| fchmodat | 268 | 333 | 53 | 306 |
| fchown | 93 | 95 | 55 | 95 |
| fchown32 | - | 207 | - | 207 |
| fchownat | 260 | 325 | 54 | 298 |
| fcntl | 72 | 55 | 25 | 55 |
| fcntl64 | - | 221 | - | 221 |
| fdatasync | 75 | 148 | 83 | 148 |
| fgetxattr | 193 | 231 | 10 | 231 |
| finit_module | 313 | 379 | 273 | 350 |
| flistxattr | 196 | 234 | 13 | 234 |
| flock | 73 | 143 | 32 | 143 |
| fork | 57 | 2 | - | 2 |
| fremovexattr | 199 | 237 | 16 | 237 |
| fsconfig | 431 | 431 | 431 | 431 |
| fsetxattr | 190 | 228 | 7 | 228 |
| fsmount | 432 | 432 | 432 | 432 |
| fsopen | 430 | 430 | 430 | 430 |
| fspick | 433 | 433 | 433 | 433 |
| fstat | 5 | 108 | 80 | 108 |
| fstat64 | - | 197 | - | 197 |
| fstatat64 | - | 327 | - | 300 |
| fstatfs | 138 | 100 | 44 | 100 |
| fstatfs64 | - | 267 | - | 269 |
| fsync | 74 | 118 | 82 | 118 |
| ftime | - | - | - | 35 |
| ftruncate | 77 | 93 | 46 | 93 |
| ftruncate64 | - | 194 | - | 194 |
| futex | 202 | 240 | 98 | 240 |
| futex_time64 | - | 422 | - | 422 |
| futimesat | 261 | 326 | - | 299 |
| get_kernel_syms | 177 | - | - | 130 |
| get_mempolicy | 239 | 320 | 236 | 275 |
| get_robust_list | 274 | 339 | 100 | 312 |
| get_thread_area | 211 | - | - | 244 |
| getcpu | 309 | 345 | 168 | 318 |
| getcwd | 79 | 183 | 17 | 183 |
| getdents | 78 | 141 | - | 141 |
| getdents64 | 217 | 217 | 61 | 220 |
| getegid | 108 | 50 | 177 | 50 |
| getegid32 | - | 202 | - | 202 |
| geteuid | 107 | 49 | 175 | 49 |
| geteuid32 | - | 201 | - | 201 |
| getgid | 104 | 47 | 176 | 47 |
| getgid32 | - | 200 | - | 200 |
| getgroups | 115 | 80 | 158 | 80 |
| getgroups32 | - | 205 | - | 205 |
| getitimer | 36 | 105 | 102 | 105 |
| getpeername | 52 | 287 | 205 | 368 |
| getpgid | 121 | 132 | 155 | 132 |
| getpgrp | 111 | 65 | - | 65 |
| getpid | 39 | 20 | 172 | 20 |
| getpmsg | 181 | - | - | 188 |
| getppid | 110 | 64 | 173 | 64 |
| getpriority | 140 | 96 | 141 | 96 |
| getrandom | 318 | 384 | 278 | 355 |
| getresgid | 120 | 171 | 150 | 171 |
| getresgid32 | - | 211 | - | 211 |
| getresuid | 118 | 165 | 148 | 165 |
| getresuid32 | - | 209 | - | 209 |
| getrlimit | 97 | - | 163 | 76 |
| getrusage | 98 | 77 | 165 | 77 |
| getsid | 124 | 147 | 156 | 147 |
| getsockname | 51 | 286 | 204 | 367 |
| getsockopt | 55 | 295 | 209 | 365 |
| gettid | 186 | 224 | 178 | 224 |
| gettimeofday | 96 | 78 | 169 | 78 |
| getuid | 102 | 24 | 174 | 24 |
| getuid32 | - | 199 | - | 199 |
| getxattr | 191 | 229 | 8 | 229 |
| gtty | - | - | - | 32 |
| idle | - | - | - | 112 |
| init_module | 175 | 128 | 105 | 128 |
| inotify_add_watch | 254 | 317 | 27 | 292 |
| inotify_init | 253 | 316 | - | 291 |
| inotify_init1 | 294 | 360 | 26 | 332 |
| inotify_rm_watch | 255 | 318 | 28 | 293 |
| io_cancel | 210 | 247 | 3 | 249 |
| io_destroy | 207 | 244 | 1 | 246 |
| io_getevents | 208 | 245 | 4 | 247 |
| io_pgetevents | 333 | 399 | 292 | 385 |
| io_pgetevents_time64 | - | 416 | - | 416 |
| io_setup | 206 | 243 | 0 | 245 |
| io_submit | 209 | 246 | 2 | 248 |
| io_uring_enter | 426 | 426 | 426 | 426 |
| io_uring_register | 427 | 427 | 427 | 427 |
| io_uring_setup | 425 | 425 | 425 | 425 |
| ioctl | 16 | 54 | 29 | 54 |
| ioperm | 173 | - | - | 101 |
| iopl | 172 | - | - | 110 |
| ioprio_get | 252 | 315 | 31 | 290 |
| ioprio_set | 251 | 314 | 30 | 289 |
| ipc | - | - | - | 117 |
| kcmp | 312 | 378 | 272 | 349 |
| kexec_file_load | 320 | 401 | 294 | - |
| kexec_load | 246 | 347 | 104 | 283 |
| keyctl | 250 | 311 | 219 | 288 |
| kill | 62 | 37 | 129 | 37 |
| lchown | 94 | 16 | - | 16 |
| lchown32 | - | 198 | - | 198 |
| lgetxattr | 192 | 230 | 9 | 230 |
| link | 86 | 9 | - | 9 |
| linkat | 265 | 330 | 37 | 303 |
| listen | 50 | 284 | 201 | 363 |
| listxattr | 194 | 232 | 11 | 232 |
| llistxattr | 195 | 233 | 12 | 233 |
| lock | - | - | - | 53 |
| lookup_dcookie | 212 | 249 | 18 | 253 |
| lremovexattr | 198 | 236 | 15 | 236 |
| lseek | 8 | 19 | 62 | 19 |
| lsetxattr | 189 | 227 | 6 | 227 |
| lstat | 6 | 107 | - | 107 |
| lstat64 | - | 196 | - | 196 |
| madvise | 28 | 220 | 233 | 219 |
| mbind | 237 | 319 | 235 | 274 |
| membarrier | 324 | 389 | 283 | 375 |
| memfd_create | 319 | 385 | 279 | 356 |
| migrate_pages | 256 | 400 | 238 | 294 |
| mincore | 27 | 219 | 232 | 218 |
| mkdir | 83 | 39 | - | 39 |
| mkdirat | 258 | 323 | 34 | 296 |
| mknod | 133 | 14 | - | 14 |
| mknodat | 259 | 324 | 33 | 297 |
| mlock | 149 | 150 | 228 | 150 |
| mlock2 | 325 | 390 | 284 | 376 |
| mlockall | 151 | 152 | 230 | 152 |
| mmap | 9 | - | 222 | 90 |
| mmap2 | - | 192 | - | 192 |
| modify_ldt | 154 | - | - | 123 |
| mount | 165 | 21 | 40 | 21 |
| move_mount | 429 | 429 | 429 | 429 |
| move_pages | 279 | 344 | 239 | 317 |
| mprotect | 10 | 125 | 226 | 125 |
| mpx | - | - | - | 56 |
| mq_getsetattr | 245 | 279 | 185 | 282 |
| mq_notify | 244 | 278 | 184 | 281 |
| mq_open | 240 | 274 | 180 | 277 |
| mq_timedreceive | 243 | 277 | 183 | 280 |
| mq_timedreceive_time64 | - | 419 | - | 419 |
| mq_timedsend | 242 | 276 | 182 | 279 |
| mq_timedsend_time64 | - | 418 | - | 418 |
| mq_unlink | 241 | 275 | 181 | 278 |
| mremap | 25 | 163 | 216 | 163 |
| msgctl | 71 | 304 | 187 | 402 |
| msgget | 68 | 303 | 186 | 399 |
| msgrcv | 70 | 302 | 188 | 401 |
| msgsnd | 69 | 301 | 189 | 400 |
| msync | 26 | 144 | 227 | 144 |
| munlock | 150 | 151 | 229 | 151 |
| munlockall | 152 | 153 | 231 | 153 |
| munmap | 11 | 91 | 215 | 91 |
| name_to_handle_at | 303 | 370 | 264 | 341 |
| nanosleep | 35 | 162 | 101 | 162 |
| newfstatat | 262 | - | 79 | - |
| nfsservctl | 180 | 169 | 42 | 169 |
| nice | - | 34 | - | 34 |
| oldfstat | - | - | - | 28 |
| oldlstat | - | - | - | 84 |
| oldolduname | - | - | - | 59 |
| oldstat | - | - | - | 18 |
| olduname | - | - | - | 109 |
| open | 2 | 5 | - | 5 |
| open_by_handle_at | 304 | 371 | 265 | 342 |
| open_tree | 428 | 428 | 428 | 428 |
| openat | 257 | 322 | 56 | 295 |
| pause | 34 | 29 | - | 29 |
| pciconfig_iobase | - | 271 | - | - |
| pciconfig_read | - | 272 | - | - |
| pciconfig_write | - | 273 | - | - |
| perf_event_open | 298 | 364 | 241 | 336 |
| personality | 135 | 136 | 92 | 136 |
| pidfd_open | 434 | 434 | 434 | 434 |
| pidfd_send_signal | 424 | 424 | 424 | 424 |
| pipe | 22 | 42 | - | 42 |
| pipe2 | 293 | 359 | 59 | 331 |
| pivot_root | 155 | 218 | 41 | 217 |
| pkey_alloc | 330 | 395 | 289 | 381 |
| pkey_free | 331 | 396 | 290 | 382 |
| pkey_mprotect | 329 | 394 | 288 | 380 |
| poll | 7 | 168 | - | 168 |
| ppoll | 271 | 336 | 73 | 309 |
| ppoll_time64 | - | 414 | - | 414 |
| prctl | 157 | 172 | 167 | 172 |
| pread64 | 17 | 180 | 67 | 180 |
| preadv | 295 | 361 | 69 | 333 |
| preadv2 | 327 | 392 | 286 | 378 |
| prlimit64 | 302 | 369 | 261 | 340 |
| process_vm_readv | 310 | 376 | 270 | 347 |
| process_vm_writev | 311 | 377 | 271 | 348 |
| prof | - | - | - | 44 |
| profil | - | - | - | 98 |
| pselect6 | 270 | 335 | 72 | 308 |
| pselect6_time64 | - | 413 | - | 413 |
| ptrace | 101 | 26 | 117 | 26 |
| putpmsg | 182 | - | - | 189 |
| pwrite64 | 18 | 181 | 68 | 181 |
| pwritev | 296 | 362 | 70 | 334 |
| pwritev2 | 328 | 393 | 287 | 379 |
| query_module | 178 | - | - | 167 |
| quotactl | 179 | 131 | 60 | 131 |
| read | 0 | 3 | 63 | 3 |
| readahead | 187 | 225 | 213 | 225 |
| readdir | - | - | - | 89 |
| readlink | 89 | 85 | - | 85 |
| readlinkat | 267 | 332 | 78 | 305 |
| readv | 19 | 145 | 65 | 145 |
| reboot | 169 | 88 | 142 | 88 |
| recv | - | 291 | - | - |
| recvfrom | 45 | 292 | 207 | 371 |
| recvmmsg | 299 | 365 | 243 | 337 |
| recvmmsg_time64 | - | 417 | - | 417 |
| recvmsg | 47 | 297 | 212 | 372 |
| remap_file_pages | 216 | 253 | 234 | 257 |
| removexattr | 197 | 235 | 14 | 235 |
| rename | 82 | 38 | - | 38 |
| renameat | 264 | 329 | 38 | 302 |
| renameat2 | 316 | 382 | 276 | 353 |
| request_key | 249 | 310 | 218 | 287 |
| restart_syscall | 219 | 0 | 128 | 0 |
| rmdir | 84 | 40 | - | 40 |
| rseq | 334 | 398 | 293 | 386 |
| rt_sigaction | 13 | 174 | 134 | 174 |
| rt_sigpending | 127 | 176 | 136 | 176 |
| rt_sigprocmask | 14 | 175 | 135 | 175 |
| rt_sigqueueinfo | 129 | 178 | 138 | 178 |
| rt_sigreturn | 15 | 173 | 139 | 173 |
| rt_sigsuspend | 130 | 179 | 133 | 179 |
| rt_sigtimedwait | 128 | 177 | 137 | 177 |
| rt_sigtimedwait_time64 | - | 421 | - | 421 |
| rt_tgsigqueueinfo | 297 | 363 | 240 | 335 |
| sched_get_priority_max | 146 | 159 | 125 | 159 |
| sched_get_priority_min | 147 | 160 | 126 | 160 |
| sched_getaffinity | 204 | 242 | 123 | 242 |
| sched_getattr | 315 | 381 | 275 | 352 |
| sched_getparam | 143 | 155 | 121 | 155 |
| sched_getscheduler | 145 | 157 | 120 | 157 |
| sched_rr_get_interval | 148 | 161 | 127 | 161 |
| sched_rr_get_interval_time64 | - | 423 | - | 423 |
| sched_setaffinity | 203 | 241 | 122 | 241 |
| sched_setattr | 314 | 380 | 274 | 351 |
| sched_setparam | 142 | 154 | 118 | 154 |
| sched_setscheduler | 144 | 156 | 119 | 156 |
| sched_yield | 24 | 158 | 124 | 158 |
| seccomp | 317 | 383 | 277 | 354 |
| security | 185 | - | - | - |
| select | 23 | - | - | 82 |
| semctl | 66 | 300 | 191 | 394 |
| semget | 64 | 299 | 190 | 393 |
| semop | 65 | 298 | 193 | - |
| semtimedop | 220 | 312 | 192 | - |
| semtimedop_time64 | - | 420 | - | 420 |
| send | - | 289 | - | - |
| sendfile | 40 | 187 | 71 | 187 |
| sendfile64 | - | 239 | - | 239 |
| sendmmsg | 307 | 374 | 269 | 345 |
| sendmsg | 46 | 296 | 211 | 370 |
| sendto | 44 | 290 | 206 | 369 |
| set_mempolicy | 238 | 321 | 237 | 276 |
| set_robust_list | 273 | 338 | 99 | 311 |
| set_thread_area | 205 | - | - | 243 |
| set_tid_address | 218 | 256 | 96 | 258 |
| setdomainname | 171 | 121 | 162 | 121 |
| setfsgid | 123 | 139 | 152 | 139 |
| setfsgid32 | - | 216 | - | 216 |
| setfsuid | 122 | 138 | 151 | 138 |
| setfsuid32 | - | 215 | - | 215 |
| setgid | 106 | 46 | 144 | 46 |
| setgid32 | - | 214 | - | 214 |
| setgroups | 116 | 81 | 159 | 81 |
| setgroups32 | - | 206 | - | 206 |
| sethostname | 170 | 74 | 161 | 74 |
| setitimer | 38 | 104 | 103 | 104 |
| setns | 308 | 375 | 268 | 346 |
| setpgid | 109 | 57 | 154 | 57 |
| setpriority | 141 | 97 | 140 | 97 |
| setregid | 114 | 71 | 143 | 71 |
| setregid32 | - | 204 | - | 204 |
| setresgid | 119 | 170 | 149 | 170 |
| setresgid32 | - | 210 | - | 210 |
| setresuid | 117 | 164 | 147 | 164 |
| setresuid32 | - | 208 | - | 208 |
| setreuid | 113 | 70 | 145 | 70 |
| setreuid32 | - | 203 | - | 203 |
| setrlimit | 160 | 75 | 164 | 75 |
| setsid | 112 | 66 | 157 | 66 |
| setsockopt | 54 | 294 | 208 | 366 |
| settimeofday | 164 | 79 | 170 | 79 |
| setuid | 105 | 23 | 146 | 23 |
| setuid32 | - | 213 | - | 213 |
| setxattr | 188 | 226 | 5 | 226 |
| sgetmask | - | - | - | 68 |
| shmat | 30 | 305 | 196 | 397 |
| shmctl | 31 | 308 | 195 | 396 |
| shmdt | 67 | 306 | 197 | 398 |
| shmget | 29 | 307 | 194 | 395 |
| shutdown | 48 | 293 | 210 | 373 |
| sigaction | - | 67 | - | 67 |
| sigaltstack | 131 | 186 | 132 | 186 |
| signal | - | - | - | 48 |
| signalfd | 282 | 349 | - | 321 |
| signalfd4 | 289 | 355 | 74 | 327 |
| sigpending | - | 73 | - | 73 |
| sigprocmask | - | 126 | - | 126 |
| sigreturn | - | 119 | - | 119 |
| sigsuspend | - | 72 | - | 72 |
| socket | 41 | 281 | 198 | 359 |
| socketcall | - | - | - | 102 |
| socketpair | 53 | 288 | 199 | 360 |
| splice | 275 | 340 | 76 | 313 |
| ssetmask | - | - | - | 69 |
| stat | 4 | 106 | - | 106 |
| stat64 | - | 195 | - | 195 |
| statfs | 137 | 99 | 43 | 99 |
| statfs64 | - | 266 | - | 268 |
| statx | 332 | 397 | 291 | 383 |
| stime | - | - | - | 25 |
| stty | - | - | - | 31 |
| swapoff | 168 | 115 | 225 | 115 |
| swapon | 167 | 87 | 224 | 87 |
| symlink | 88 | 83 | - | 83 |
| symlinkat | 266 | 331 | 36 | 304 |
| sync | 162 | 36 | 81 | 36 |
| sync_file_range | 277 | - | 84 | 314 |
| sync_file_range2 | - | 341 | - | - |
| syncfs | 306 | 373 | 267 | 344 |
| sysfs | 139 | 135 | - | 135 |
| sysinfo | 99 | 116 | 179 | 116 |
| syslog | 103 | 103 | 116 | 103 |
| tee | 276 | 342 | 77 | 315 |
| tgkill | 234 | 268 | 131 | 270 |
| time | 201 | - | - | 13 |
| timer_create | 222 | 257 | 107 | 259 |
| timer_delete | 226 | 261 | 111 | 263 |
| timer_getoverrun | 225 | 260 | 109 | 262 |
| timer_gettime | 224 | 259 | 108 | 261 |
| timer_gettime64 | - | 408 | - | 408 |
| timer_settime | 223 | 258 | 110 | 260 |
| timer_settime64 | - | 409 | - | 409 |
| timerfd_create | 283 | 350 | 85 | 322 |
| timerfd_gettime | 287 | 354 | 87 | 326 |
| timerfd_gettime64 | - | 410 | - | 410 |
| timerfd_settime | 286 | 353 | 86 | 325 |
| timerfd_settime64 | - | 411 | - | 411 |
| times | 100 | 43 | 153 | 43 |
| tkill | 200 | 238 | 130 | 238 |
| truncate | 76 | 92 | 45 | 92 |
| truncate64 | - | 193 | - | 193 |
| tuxcall | 184 | - | - | - |
| ugetrlimit | - | 191 | - | 191 |
| ulimit | - | - | - | 58 |
| umask | 95 | 60 | 166 | 60 |
| umount | - | - | - | 22 |
| umount2 | 166 | 52 | 39 | 52 |
| uname | 63 | 122 | 160 | 122 |
| unlink | 87 | 10 | - | 10 |
| unlinkat | 263 | 328 | 35 | 301 |
| unshare | 272 | 337 | 97 | 310 |
| uselib | 134 | 86 | - | 86 |
| userfaultfd | 323 | 388 | 282 | 374 |
| ustat | 136 | 62 | - | 62 |
| utime | 132 | - | - | 30 |
| utimensat | 280 | 348 | 88 | 320 |
| utimensat_time64 | - | 412 | - | 412 |
| utimes | 235 | 269 | - | 271 |
| vfork | 58 | 190 | - | 190 |
| vhangup | 153 | 111 | 58 | 111 |
| vm86 | - | - | - | 166 |
| vm86old | - | - | - | 113 |
| vmsplice | 278 | 343 | 75 | 316 |
| vserver | 236 | 313 | - | 273 |
| wait4 | 61 | 114 | 260 | 114 |
| waitid | 247 | 280 | 95 | 284 |
| waitpid | - | - | - | 7 |
| write | 1 | 4 | 64 | 4 |
| writev | 20 | 146 | 66 | 146 |
