|
From: Kenn H. <ke...@us...> - 2004-11-18 09:28:25
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14846/arch/vax/kernel Modified Files: process.c Log Message: CLONE_IDLETASK doesn't exist any more Index: process.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/process.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- process.c 30 May 2004 09:49:21 -0000 1.25 +++ process.c 18 Nov 2004 09:28:15 -0000 1.26 @@ -219,7 +219,7 @@ printk("sys_clone: calling do_fork(0x%08lx, 0x%08lx, 0x%p)\n", clone_flags, newsp, regs); #endif - retval = do_fork(clone_flags & ~CLONE_IDLETASK, newsp, regs, 0, NULL, NULL); + retval = do_fork(clone_flags, newsp, regs, 0, NULL, NULL); #ifdef VAX_PROCESS_DEBUG printk("sys_clone: do_fork() returned pid %d\n", retval); |