summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc/include
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2003-02-26 21:54:45 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2003-02-26 21:54:45 +0000
commit69e79a52e04b45badd8b0ebc99f4cb0bfdc3afea (patch)
treeb672327bf9b8c74c22fa25eba2957b887fe15534 /sys/arch/powerpc/include
parent55e318a23027c876c059d31551485df31d2ec4e3 (diff)
Remove an unnecessary structure copy from useage of setfault(), call
by reference, not by value, ok matthieu#, miod@
Diffstat (limited to 'sys/arch/powerpc/include')
-rw-r--r--sys/arch/powerpc/include/pcb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/pcb.h b/sys/arch/powerpc/include/pcb.h
index 2530c91c6fc..bd356bd1891 100644
--- a/sys/arch/powerpc/include/pcb.h
+++ b/sys/arch/powerpc/include/pcb.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcb.h,v 1.8 2002/03/14 01:26:42 millert Exp $ */
+/* $OpenBSD: pcb.h,v 1.9 2003/02/26 21:54:44 drahn Exp $ */
/* $NetBSD: pcb.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */
/*-
@@ -68,6 +68,6 @@ struct md_coredump {
extern struct pcb *curpcb;
extern struct pmap *curpm;
extern struct proc *fpuproc;
-int setfault(faultbuf env);
+int setfault(faultbuf *env);
#endif
#endif /* _POWERPC_PCB_H_ */