Remove inclusions of syscall (and syscall argument) related header files;

we don't need them here.
This commit is contained in:
kleink 1998-05-05 20:51:04 +00:00
parent 0713044d87
commit 182e12f413
11 changed files with 11 additions and 44 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_amap.c,v 1.7 1998/03/09 00:58:55 mrg Exp $ */
/* $NetBSD: uvm_amap.c,v 1.8 1998/05/05 20:51:04 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -46,7 +46,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/malloc.h>
@ -54,8 +53,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#define UVM_AMAP /* pull in uvm_amap.h functions */
#include <uvm/uvm.h>
#include <uvm/uvm_swap.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_device.c,v 1.7 1998/03/09 00:58:56 mrg Exp $ */
/* $NetBSD: uvm_device.c,v 1.8 1998/05/05 20:51:05 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -48,7 +48,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/vnode.h>
@ -57,8 +56,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
#include <uvm/uvm_device.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_fault.c,v 1.9 1998/03/26 21:50:14 chuck Exp $ */
/* $NetBSD: uvm_fault.c,v 1.10 1998/05/05 20:51:05 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -47,7 +47,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/mman.h>
@ -57,8 +56,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_init.c,v 1.6 1998/03/09 00:58:57 mrg Exp $ */
/* $NetBSD: uvm_init.c,v 1.7 1998/05/05 20:51:05 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -48,7 +48,6 @@
#include <sys/filedesc.h>
#include <sys/resourcevar.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/vnode.h>
@ -59,8 +58,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_io.c,v 1.4 1998/03/09 00:58:57 mrg Exp $ */
/* $NetBSD: uvm_io.c,v 1.5 1998/05/05 20:51:05 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -44,7 +44,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>
#include <sys/mman.h>
#include <sys/proc.h>
#include <sys/malloc.h>
@ -54,8 +53,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_loan.c,v 1.7 1998/03/22 21:29:30 chuck Exp $ */
/* $NetBSD: uvm_loan.c,v 1.8 1998/05/05 20:51:06 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -45,7 +45,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/mman.h>
@ -54,8 +53,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
/*

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_map.c,v 1.17 1998/04/25 19:58:58 matthias Exp $ */
/* $NetBSD: uvm_map.c,v 1.18 1998/05/05 20:51:06 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -79,7 +79,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>
#include <sys/mman.h>
#include <sys/proc.h>
#include <sys/malloc.h>
@ -92,8 +91,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#define UVM_MAP
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_page.c,v 1.9 1998/04/16 03:54:35 thorpej Exp $ */
/* $NetBSD: uvm_page.c,v 1.10 1998/05/05 20:51:06 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -79,15 +79,12 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#define UVM_PAGE /* pull in uvm_page.h functions */
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_pager.c,v 1.7 1998/03/22 16:10:29 chuck Exp $ */
/* $NetBSD: uvm_pager.c,v 1.8 1998/05/05 20:51:07 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -47,7 +47,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/malloc.h>
@ -55,8 +54,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#define UVM_PAGER
#include <uvm/uvm.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_pglist.c,v 1.3 1998/03/09 00:58:59 mrg Exp $ */
/* $NetBSD: uvm_pglist.c,v 1.4 1998/05/05 20:51:07 kleink Exp $ */
#define VM_PAGE_ALLOC_MEMORY_STATS
@ -49,15 +49,12 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <vm/vm.h>
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
#ifdef VM_PAGE_ALLOC_MEMORY_STATS

View File

@ -1,4 +1,4 @@
/* $NetBSD: uvm_vnode.c,v 1.9 1998/03/11 01:37:40 chuck Exp $ */
/* $NetBSD: uvm_vnode.c,v 1.10 1998/05/05 20:51:07 kleink Exp $ */
/*
* XXXCDC: "ROUGH DRAFT" QUALITY UVM PRE-RELEASE FILE!
@ -58,7 +58,6 @@
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/mount.h>
#include <sys/proc.h>
#include <sys/malloc.h>
#include <sys/vnode.h>
@ -67,8 +66,6 @@
#include <vm/vm_page.h>
#include <vm/vm_kern.h>
#include <sys/syscallargs.h>
#include <uvm/uvm.h>
#include <uvm/uvm_vnode.h>