diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-15 02:24:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-15 02:24:43 +0000 |
commit | a215e357f13619b1cb8952e66d1006752e813e54 (patch) | |
tree | c9b4504153da98f27d626ff2f686698df2fc1d5b | |
parent | 6b7310e27000e95b8e6d178202b2156f6f705cab (diff) |
cpu_fork changes type
-rw-r--r-- | sys/arch/mvme68k/mvme68k/vm_machdep.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/arch/mvme68k/mvme68k/vm_machdep.c b/sys/arch/mvme68k/mvme68k/vm_machdep.c index 913539004fc..99de3b7756a 100644 --- a/sys/arch/mvme68k/mvme68k/vm_machdep.c +++ b/sys/arch/mvme68k/mvme68k/vm_machdep.c @@ -1,4 +1,4 @@ -/* $Id: vm_machdep.c,v 1.3 1995/11/28 01:24:42 deraadt Exp $ */ +/* $Id: vm_machdep.c,v 1.4 1995/12/15 02:24:42 deraadt Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -66,7 +66,7 @@ * address in each process; in the future we will probably relocate * the frame pointers on the stack after copying. */ -int +void cpu_fork(p1, p2) register struct proc *p1, *p2; { @@ -96,8 +96,6 @@ cpu_fork(p1, p2) pcb->pcb_regs[6] = (int)child_return; /* A2 */ pcb->pcb_regs[7] = (int)p2; /* A3 */ pcb->pcb_regs[11] = (int)sf; /* SSP */ - - return (0); } void |