diff options
| author | André Almeida <andrealmeid@riseup.net> | 2020-02-17 02:27:23 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-17 06:27:23 +0100 |
| commit | d0d8e8bc776b3fd53659a8067a1eb6f69141d2eb (patch) | |
| tree | d15a154fcbdf6704e6a7a52a1aa6616e82303bbc /executor/syscalls.h | |
| parent | 1f448cd62db290246f8793128f85bd84aaa7a59d (diff) | |
sys/linux: add new FUTEX_WAIT_MULTIPLE operation
Create individual file for futex syscall and add description for the new
operation FUTEX_WAIT_MULTIPLE.
Signed-off-by: André Almeida <andrealmeid@collabora.com>
Diffstat (limited to 'executor/syscalls.h')
| -rw-r--r-- | executor/syscalls.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/executor/syscalls.h b/executor/syscalls.h index 709ad1ab8..8318f3697 100644 --- a/executor/syscalls.h +++ b/executor/syscalls.h @@ -2274,6 +2274,7 @@ const call_t syscalls[] = { {"fsync", 118}, {"ftruncate", 93}, {"futex", 240}, + {"futex$FUTEX_WAIT_MULTIPLE", 240}, {"futimesat", 299}, {"get_mempolicy", 275}, {"get_robust_list", 312}, @@ -5572,6 +5573,7 @@ const call_t syscalls[] = { {"fsync", 74}, {"ftruncate", 77}, {"futex", 202}, + {"futex$FUTEX_WAIT_MULTIPLE", 202}, {"futimesat", 261}, {"get_mempolicy", 239}, {"get_robust_list", 274}, @@ -8869,6 +8871,7 @@ const call_t syscalls[] = { {"fsync", 118}, {"ftruncate", 93}, {"futex", 240}, + {"futex$FUTEX_WAIT_MULTIPLE", 240}, {"futimesat", 326}, {"get_mempolicy", 320}, {"get_robust_list", 339}, @@ -12116,6 +12119,7 @@ const call_t syscalls[] = { {"fsync", 82}, {"ftruncate", 46}, {"futex", 98}, + {"futex$FUTEX_WAIT_MULTIPLE", 98}, {"get_mempolicy", 236}, {"get_robust_list", 100}, {"getcwd", 17}, @@ -15347,6 +15351,7 @@ const call_t syscalls[] = { {"fsync", 5072}, {"ftruncate", 5075}, {"futex", 5194}, + {"futex$FUTEX_WAIT_MULTIPLE", 5194}, {"futimesat", 5251}, {"get_mempolicy", 5228}, {"get_robust_list", 5269}, @@ -18502,6 +18507,7 @@ const call_t syscalls[] = { {"fsync", 118}, {"ftruncate", 93}, {"futex", 221}, + {"futex$FUTEX_WAIT_MULTIPLE", 221}, {"futimesat", 290}, {"get_mempolicy", 260}, {"get_robust_list", 299}, |
