summaryrefslogtreecommitdiff
path: root/arch/or1k
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2014-07-20 15:43:42 +0200
committerSzabolcs Nagy <nsz@port70.net>2014-07-20 18:42:21 +0200
commit002e8d84c5fec47636606aef5d2f16914c6097f3 (patch)
tree872045d3d4bb3bd89374286f93994d5b0016673d /arch/or1k
parent1312930f9bdea47006a8a8c8509c0bed5cf69e85 (diff)
downloadmusl-002e8d84c5fec47636606aef5d2f16914c6097f3.tar.gz
add syscall numbers for the new renameat2 syscall
it's like rename but with flags eg. to allow atomic exchange of two files, introduced in linux 3.15 commit 520c8b16505236fc82daa352e6c5e73cd9870cff
Diffstat (limited to 'arch/or1k')
-rw-r--r--arch/or1k/bits/syscall.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/or1k/bits/syscall.h b/arch/or1k/bits/syscall.h
index 905229f0..dfb1a8bc 100644
--- a/arch/or1k/bits/syscall.h
+++ b/arch/or1k/bits/syscall.h
@@ -257,6 +257,9 @@
#define __NR_process_vm_writev 271
#define __NR_kcmp 272
#define __NR_finit_module 273
+#define __NR_sched_setattr 274
+#define __NR_sched_getattr 275
+#define __NR_renameat2 276
#define SYS_io_setup __NR_io_setup
#define SYS_io_destroy __NR_io_destroy
@@ -517,3 +520,6 @@
#define SYS_process_vm_writev __NR_process_vm_writev
#define SYS_kcmp __NR_kcmp
#define SYS_finit_module __NR_finit_module
+#define SYS_sched_setattr __NR_sched_setattr
+#define SYS_sched_getattr __NR_sched_getattr
+#define SYS_renameat2 __NR_renameat2