summaryrefslogtreecommitdiff
path: root/include/linux/syscalls.h
diff options
context:
space:
mode:
authorKent Overstreet <koverstreet@google.com>2012-10-11 13:36:15 -0700
committerKent Overstreet <koverstreet@google.com>2012-10-11 13:36:15 -0700
commit21a0765a50fff349155964432b9529541eee5e8a (patch)
treef605ce5afbeb7d2dce0ee8c546f47d98ea5f48fb /include/linux/syscalls.h
parent07a2039b8eb0af4ff464efd3dfd95de5c02648c6 (diff)
acallacall
Diffstat (limited to 'include/linux/syscalls.h')
-rw-r--r--include/linux/syscalls.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h
index 30520844b8da..5a72e5b2ba58 100644
--- a/include/linux/syscalls.h
+++ b/include/linux/syscalls.h
@@ -55,6 +55,9 @@ struct compat_timeval;
struct robust_list_head;
struct getcpu_cache;
struct old_linux_dirent;
+struct acall_submission;
+struct acall_id;
+struct acall_completion_ring;
#include <linux/types.h>
#include <linux/aio_abi.h>
@@ -752,7 +755,22 @@ asmlinkage long sys_ppoll(struct pollfd __user *, unsigned int,
size_t);
asmlinkage long sys_pipe2(int __user *, int);
asmlinkage long sys_pipe(int __user *);
+asmlinkage long sys_acall_submit(struct acall_submission __user *submissions,
+ unsigned long nr);
+asmlinkage long sys_acall_comp_pwait(struct acall_id __user *uids,
+ unsigned long nr,
+ struct timespec __user *utime,
+ const sigset_t __user *sigmask,
+ size_t sigsetsize);
+asmlinkage long sys_acall_ring_pwait(struct acall_completion_ring __user *uring,
+ u32 tail, u32 min,
+ struct timespec __user *utime,
+ const sigset_t __user *sigmask,
+ size_t sigsetsize);
int kernel_execve(const char *filename, char *const argv[], char *const envp[]);
+long arch_call_syscall(unsigned int nr, long arg0, long arg1, long arg2,
+ long arg3, long arg4, long arg5);
+
#endif