| Kernel v2.4.22 /ipc/util.c |
|---|
 2.4.22
 ipc
 util.c
diff -urN linux-2.4.21/ipc/util.c linux-2.4.22/ipc/util.c
--- linux-2.4.21/ipc/util.c 2002-11-28 15:53:15.000000000 -0800
+++ linux-2.4.22/ipc/util.c 2003-08-25 04:44:44.000000000 -0700
@@ -359,6 +359,12 @@
return -ENOSYS;
}
+asmlinkage long sys_semtimedop(int semid, struct sembuf *sops, unsigned nsops,
+ const struct timespec *timeout)
+{
+ return -ENOSYS;
+}
+
asmlinkage long sys_semctl (int semid, int semnum, int cmd, union semun arg)
{
return -ENOSYS;
|