aboutsummaryrefslogtreecommitdiff
path: root/include/linux/syscalls.h
diff options
context:
space:
mode:
authorMark Brown <broonie@linaro.org>2013-08-21 12:53:05 +0100
committerMark Brown <broonie@linaro.org>2013-08-21 12:53:05 +0100
commit4c4ca6a49f1a580666912153b8501331f7b4f379 (patch)
treedffa1560a0aa36a3fc46121fd8f49de135834635 /include/linux/syscalls.h
parenta3cf22a4a40437cf8fe366078548e0d2c55c01a7 (diff)
parent0a4b6d4ff200a553951f77f765971cb3e4c91ec0 (diff)
Merge tag 'v3.10.9' into linux-linaro-lsk
This is the 3.10.9 stable release
Diffstat (limited to 'include/linux/syscalls.h')
-rw-r--r--include/linux/syscalls.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index 4147d700a29..84662ecc7b5 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -802,9 +802,14 @@ asmlinkage long sys_vfork(void);
asmlinkage long sys_clone(unsigned long, unsigned long, int __user *, int,
int __user *);
#else
+#ifdef CONFIG_CLONE_BACKWARDS3
+asmlinkage long sys_clone(unsigned long, unsigned long, int, int __user *,
+ int __user *, int);
+#else
asmlinkage long sys_clone(unsigned long, unsigned long, int __user *,
int __user *, int);
#endif
+#endif
asmlinkage long sys_execve(const char __user *filename,
const char __user *const __user *argv,