Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Jun 2003 21:14:29 -0700 (PDT)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 32444 for review
Message-ID:  <200306030414.h534ET3L033778@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help

http://perforce.freebsd.org/chv.cgi?CH=32444

Change 32444 by jmallett@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306030414.h534ET3L033778>