aboutsummaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2004-02-22 07:05:38 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-02-22 07:05:38 -0800
commitae0ecb664a7c4d16fa2a737c50e2d5833b06cdd0 (patch)
treec19d2cc31f438f4ee998d90a1d377cd52ae525de /ipc
parent4d273aae880c83772e924bee8b261d3123311078 (diff)
downloadhistory-ae0ecb664a7c4d16fa2a737c50e2d5833b06cdd0.tar.gz
[PATCH] cleanup condsyscall for sysv ipc
From: Manfred Spraul <manfred@colorfullife.com> Attached is a patch that replaces the #ifndef CONFIG_SYSV syscall stubs with cond_syscall stubs.
Diffstat (limited to 'ipc')
-rw-r--r--ipc/util.c63
1 files changed, 0 insertions, 63 deletions
diff --git a/ipc/util.c b/ipc/util.c
index bb548b5114872f..6d94883edae0c7 100644
--- a/ipc/util.c
+++ b/ipc/util.c
@@ -547,67 +547,4 @@ void exit_sem(struct task_struct *tsk)
return;
}
-asmlinkage long sys_semget (key_t key, int nsems, int semflg)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_semop (int semid, struct sembuf *sops, unsigned nsops)
-{
- 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;
-}
-
-asmlinkage long sys_msgget (key_t key, int msgflg)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz, long msgtyp,
- int msgflg)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_msgctl (int msqid, int cmd, struct msqid_ds *buf)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_shmget (key_t key, size_t size, int shmflag)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_shmat (int shmid, char *shmaddr, int shmflg, ulong *addr)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_shmdt (char *shmaddr)
-{
- return -ENOSYS;
-}
-
-asmlinkage long sys_shmctl (int shmid, int cmd, struct shmid_ds *buf)
-{
- return -ENOSYS;
-}
-
#endif /* CONFIG_SYSVIPC */