PERFORCE change 32444 for review
    Juli Mallett 
    jmallett at FreeBSD.org
       
    Mon Jun  2 21:14:31 PDT 2003
    
    
  
http://perforce.freebsd.org/chv.cgi?CH=32444
Change 32444 by jmallett at jmallett_dalek on 2003/06/02 21:14:04
	New style switch/throw, for -std=c99.
Affected files ...
.. //depot/projects/mips/sys/mips/mips/vm_machdep.c#6 edit
Differences ...
==== //depot/projects/mips/sys/mips/mips/vm_machdep.c#6 (text+ko) ====
@@ -65,14 +65,14 @@
 }
 
 void
-cpu_switch(void)
+cpu_switch(struct thread *old, struct thread *new)
 {
 }
 
 void
-cpu_throw(void)
+cpu_throw(struct thread *old, struct thread *new)
 {
-	panic("cpu_throw: called.\n");
+	panic("cpu_throw");
 }
 
 void
    
    
More information about the p4-projects
mailing list