diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-01-05 06:47:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2008-01-05 06:47:30 +0000 |
commit | ee438a1eb65d4092116df23ce029fa98bc5ea162 (patch) | |
tree | 4939a48b641510e6dea85c2b475c41349cd6e101 /libc/misc/sysvipc/ipc.h | |
parent | 29c5e0adf13a96a0247e79d352168548c8c83fdf (diff) |
implement semtimedop for #927
Diffstat (limited to 'libc/misc/sysvipc/ipc.h')
-rw-r--r-- | libc/misc/sysvipc/ipc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/misc/sysvipc/ipc.h b/libc/misc/sysvipc/ipc.h index 5bdbe6471..339d1364b 100644 --- a/libc/misc/sysvipc/ipc.h +++ b/libc/misc/sysvipc/ipc.h @@ -12,14 +12,15 @@ #ifdef __NR_ipc /* The actual system call: all functions are multiplexed by this. */ -extern int __syscall_ipc (unsigned int __call, int __first, int __second, - int __third, void *__ptr) attribute_hidden; +extern int __syscall_ipc (unsigned int __call, long __first, long __second, + long __third, void *__ptr, void *__fifth) attribute_hidden; /* The codes for the functions to use the multiplexer `__syscall_ipc'. */ #define IPCOP_semop 1 #define IPCOP_semget 2 #define IPCOP_semctl 3 +#define IPCOP_semtimedop 4 #define IPCOP_msgsnd 11 #define IPCOP_msgrcv 12 #define IPCOP_msgget 13 |