Oops, back out a buglet I didn't intend to commit in the last change.

This commit is contained in:
thorpej 1998-10-07 18:29:26 +00:00
parent 922332701f
commit b38544d99e
6 changed files with 12 additions and 18 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.27 1998/10/06 20:50:15 thorpej Exp $ */
/* $NetBSD: cpu.h,v 1.28 1998/10/07 18:29:26 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -159,7 +159,7 @@ int alpha_pa_access __P((u_long));
void ast __P((struct trapframe *));
int badaddr __P((void *, size_t));
int badaddr_read __P((void *, size_t, void *));
void child_return __P((struct proc *p, void *));
void child_return __P((struct proc *p));
u_int64_t console_restart __P((u_int64_t, u_int64_t, u_int64_t));
void do_sir __P((void));
void dumpconf __P((void));

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.42 1998/10/06 20:50:16 thorpej Exp $ */
/* $NetBSD: cpu.h,v 1.43 1998/10/07 18:29:27 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -243,11 +243,6 @@ void setredzone __P((u_int *, caddr_t));
*/
void pmap_bootstrap __P((vm_offset_t, vm_offset_t));
/*
* Prototypes from trap.c:
*/
void child_return __P((struct proc *, void *));
#endif /* _KERNEL */
#endif /* !_MACHINE_CPU_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.27 1998/10/06 20:50:16 thorpej Exp $ */
/* $NetBSD: cpu.h,v 1.28 1998/10/07 18:29:27 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -269,7 +269,9 @@ void init_pci_bus __P((void));
/*
* Prototypes from trap.c:
*/
void child_return __P((struct proc *, void *));
#ifdef _MACHINE_FRAME_H_ /* XXX: We don't want to include this everywhere */
void child_return __P((struct proc *, struct frame));
#endif
#endif /* _KERNEL */
#endif /* !_MACHINE_CPU_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.46 1998/10/06 21:42:09 thorpej Exp $ */
/* $NetBSD: cpu.h,v 1.47 1998/10/07 18:29:27 thorpej Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -185,7 +185,7 @@ void vm86_gpfault __P((struct proc *, int));
#endif /* VM86 */
/* trap.c */
void child_return __P((struct proc *, void *));
void child_return __P((struct proc *, struct frame));
#endif /* _KERNEL */

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.26 1998/10/06 20:50:17 thorpej Exp $ */
/* $NetBSD: cpu.h,v 1.27 1998/10/07 18:29:27 thorpej Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@ -117,7 +117,7 @@ void softnet __P((void *));
void icu_init __P((u_char *));
/* trap.c */
void child_return __P((struct proc *, void *));
void child_return __P((struct proc *));
/* vm_machdep.c */
int kvtop __P((caddr_t));

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.10 1998/10/06 20:50:18 thorpej Exp $ */
/* $NetBSD: cpu.h,v 1.11 1998/10/07 18:29:27 thorpej Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -199,9 +199,6 @@ void physaccess __P((caddr_t, caddr_t, int, int));
void physunaccess __P((caddr_t, int));
int kvtop __P((caddr_t));
/* trap.c functions */
void child_return __P((struct proc *, void *));
#endif
/* physical memory sections */