diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-10-08 22:21:34 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1994-10-08 22:21:34 +0000 |
| commit | 50a1a0544557fa00301c41827a7636b4605dd386 (patch) | |
| tree | c09e98e83e92c2d0dbc81d5b21d237ac19a29280 /sys/amd64/include | |
| parent | 3fb3086e98c3a8b20546685c0912d75eaec94025 (diff) | |
Notes
Diffstat (limited to 'sys/amd64/include')
| -rw-r--r-- | sys/amd64/include/cpu.h | 6 | ||||
| -rw-r--r-- | sys/amd64/include/pcb.h | 3 | ||||
| -rw-r--r-- | sys/amd64/include/pmap.h | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/sys/amd64/include/cpu.h b/sys/amd64/include/cpu.h index f31f38a39bada..01eb10558124d 100644 --- a/sys/amd64/include/cpu.h +++ b/sys/amd64/include/cpu.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)cpu.h 5.4 (Berkeley) 5/9/91 - * $Id: cpu.h,v 1.10 1994/09/20 00:32:40 ache Exp $ + * $Id: cpu.h,v 1.11 1994/10/04 18:25:51 ache Exp $ */ #ifndef _MACHINE_CPU_H_ @@ -115,6 +115,10 @@ extern int want_resched; /* resched was called */ extern int cpu; extern int cpu_class; extern struct cpu_nameclass i386_cpus[]; +int cpu_fork __P((struct proc *, struct proc *)); +int npxdna __P((void)); +void npxexit __P((struct proc *p)); + #endif #endif /* !_MACHINE_CPU_H_ */ diff --git a/sys/amd64/include/pcb.h b/sys/amd64/include/pcb.h index 953a9ef9b126d..37b76f85832d0 100644 --- a/sys/amd64/include/pcb.h +++ b/sys/amd64/include/pcb.h @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * from: @(#)pcb.h 5.10 (Berkeley) 5/12/91 - * $Id: pcb.h,v 1.5 1994/05/25 08:56:19 rgrimes Exp $ + * $Id: pcb.h,v 1.6 1994/08/13 03:49:50 wollman Exp $ */ #ifndef _I386_PCB_H_ @@ -88,6 +88,7 @@ struct md_coredump { #ifdef KERNEL extern struct pcb *curpcb; /* our current running pcb */ +int savectx __P((struct pcb*,int)); #endif #endif /* _I386_PCB_H_ */ diff --git a/sys/amd64/include/pmap.h b/sys/amd64/include/pmap.h index d90a4ba4aefd3..16afa104320e5 100644 --- a/sys/amd64/include/pmap.h +++ b/sys/amd64/include/pmap.h @@ -42,7 +42,7 @@ * * from: hp300: @(#)pmap.h 7.2 (Berkeley) 12/16/90 * from: @(#)pmap.h 7.4 (Berkeley) 5/12/91 - * $Id: pmap.h,v 1.15 1994/08/18 22:34:47 wollman Exp $ + * $Id: pmap.h,v 1.16 1994/08/23 16:27:15 davidg Exp $ */ #ifndef _PMAP_MACHINE_ @@ -198,6 +198,8 @@ extern inline pt_entry_t *pmap_pte(pmap_t, vm_offset_t); struct pcb; extern void pmap_activate(pmap_t, struct pcb *); extern pmap_t pmap_kernel(void); +boolean_t pmap_page_exists __P((pmap_t, vm_offset_t)); +vm_page_t pmap_pte_vm_page __P((pmap_t, vm_offset_t)); #endif /* KERNEL */ #endif /* _PMAP_MACHINE_ */ |
