artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b529c1f
)
it compiles now.
author
mickey
<mickey@openbsd.org>
Sat, 4 May 1996 21:27:34 +0000
(21:27 +0000)
committer
mickey
<mickey@openbsd.org>
Sat, 4 May 1996 21:27:34 +0000
(21:27 +0000)
sys/arch/hp300/hp300/vm_machdep.c
patch
|
blob
|
history
diff --git
a/sys/arch/hp300/hp300/vm_machdep.c
b/sys/arch/hp300/hp300/vm_machdep.c
index
94a388d
..
2500080
100644
(file)
--- a/
sys/arch/hp300/hp300/vm_machdep.c
+++ b/
sys/arch/hp300/hp300/vm_machdep.c
@@
-103,10
+103,10
@@
cpu_fork(p1, p2)
void
cpu_set_kpc(p, pc)
struct proc *p;
-
u_long pc
;
+
void (*pc)(struct proc *)
;
{
- p->p_addr->u_pcb.pcb_regs[6] = pc; /* A2 */
+ p->p_addr->u_pcb.pcb_regs[6] =
(u_long)
pc; /* A2 */
}
/*
@@
-200,9
+200,10
@@
cpu_coredump(p, vp, cred, chdr)
* Both addresses are assumed to reside in the Sysmap,
* and size must be a multiple of CLSIZE.
*/
+void
pagemove(from, to, size)
register caddr_t from, to;
-
in
t size;
+
size_
t size;
{
register vm_offset_t pa;