Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1:/tmp/cvs-serv5691/arch/vax/kernel
Modified Files:
syscall.c
Log Message:
sys_pause() is now implemented in arch-independent code
Index: syscall.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/syscall.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- syscall.c 20 May 2002 00:33:33 -0000 1.4
+++ syscall.c 27 Jan 2003 09:04:25 -0000 1.5
@@ -124,17 +124,6 @@
}
-/*
- * The syscall handlers from here on down are pretty much copied
- * directly from other arches. Don't know whether they'll work or not...
- */
-int sys_pause(void)
-{
- current->state = TASK_INTERRUPTIBLE;
- schedule();
- return -ERESTARTNOHAND;
-}
-
int sys_pipe(unsigned long *fildes)
{
int fd[2];
|