From: Kenn H. <ke...@us...> - 2003-02-09 01:44:59
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel In directory sc8-pr-cvs1:/tmp/cvs-serv26858/arch/vax/kernel Modified Files: process.c Log Message: We now define switch_to() as a macro which drops the unused argument and calls __switch_to(). Index: process.c =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/process.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- process.c 26 Jan 2003 17:06:27 -0000 1.11 +++ process.c 9 Feb 2003 01:44:54 -0000 1.12 @@ -46,7 +46,7 @@ /* nothing */ } -void switch_to(struct task_struct* prev, struct task_struct* next, struct task_struct *last) +void __switch_to(struct task_struct* prev, struct task_struct* next) { unsigned long pcbb; /* physical address of new pcb */ |