diff options
author | Namhoon Kim <namhoonk@cs.unc.edu> | 2015-11-09 14:27:20 -0500 |
---|---|---|
committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2015-11-10 05:05:10 -0500 |
commit | a17f532bb1056742dc0ebbb6182bda063836316d (patch) | |
tree | 1eaedc9076d0bcbb39dc6c1aba192da929d660c1 /include/litmus/unistd_32.h | |
parent | d126eb2a5053f139e5bc1b37344edd88d32bd033 (diff) |
Fix __NR_syscalls for ARM
__NR_syscalls must be a multiple of 4 for ARM. This patch adds
padding to __NR_syscalls and fixes the missing NR_litmus_syscalls
in include/litmus/unistd_32.h.
Diffstat (limited to 'include/litmus/unistd_32.h')
-rw-r--r-- | include/litmus/unistd_32.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/litmus/unistd_32.h b/include/litmus/unistd_32.h index d9eab50f7a71..570b1f54d534 100644 --- a/include/litmus/unistd_32.h +++ b/include/litmus/unistd_32.h | |||
@@ -18,3 +18,5 @@ | |||
18 | #define __NR_release_ts __LSC(10) | 18 | #define __NR_release_ts __LSC(10) |
19 | #define __NR_null_call __LSC(11) | 19 | #define __NR_null_call __LSC(11) |
20 | #define __NR_get_current_budget __LSC(12) | 20 | #define __NR_get_current_budget __LSC(12) |
21 | |||
22 | #define NR_litmus_syscalls 13 | ||