Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src remove include of <vm/vm.h>



details:   https://anonhg.NetBSD.org/src/rev/7728685768d1
branches:  trunk
changeset: 494007:7728685768d1
user:      mrg <mrg%NetBSD.org@localhost>
date:      Thu Jun 29 06:26:33 2000 +0000

description:
remove include of <vm/vm.h>

diffstat:

 bin/ps/print.c                  |   6 ++----
 libexec/rpc.rstatd/rstat_proc.c |   5 ++---
 usr.bin/systat/vmstat.c         |   6 ++----
 usr.bin/vmstat/vmstat.c         |  11 ++++++-----
 4 files changed, 12 insertions(+), 16 deletions(-)

diffs (119 lines):

diff -r f908c1c01927 -r 7728685768d1 bin/ps/print.c
--- a/bin/ps/print.c    Thu Jun 29 06:08:44 2000 +0000
+++ b/bin/ps/print.c    Thu Jun 29 06:26:33 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: print.c,v 1.55 2000/06/08 13:30:40 simonb Exp $        */
+/*     $NetBSD: print.c,v 1.56 2000/06/29 06:27:33 mrg Exp $   */
 
 /*
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -74,7 +74,7 @@
 #if 0
 static char sccsid[] = "@(#)print.c    8.6 (Berkeley) 4/16/94";
 #else
-__RCSID("$NetBSD: print.c,v 1.55 2000/06/08 13:30:40 simonb Exp $");
+__RCSID("$NetBSD: print.c,v 1.56 2000/06/29 06:27:33 mrg Exp $");
 #endif
 #endif /* not lint */
 
@@ -86,8 +86,6 @@
 #include <sys/ucred.h>
 #include <sys/sysctl.h>
 
-#include <vm/vm.h>
-
 #include <err.h>
 #include <kvm.h>
 #include <math.h>
diff -r f908c1c01927 -r 7728685768d1 libexec/rpc.rstatd/rstat_proc.c
--- a/libexec/rpc.rstatd/rstat_proc.c   Thu Jun 29 06:08:44 2000 +0000
+++ b/libexec/rpc.rstatd/rstat_proc.c   Thu Jun 29 06:26:33 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rstat_proc.c,v 1.34 2000/06/04 01:38:52 perry Exp $    */
+/*     $NetBSD: rstat_proc.c,v 1.35 2000/06/29 06:26:33 mrg Exp $      */
 
 /*
  * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
@@ -35,7 +35,7 @@
 static char sccsid[] = "from: @(#)rpc.rstatd.c 1.1 86/09/25 Copyr 1984 Sun Micro";
 static char sccsid[] = "from: @(#)rstat_proc.c 2.2 88/08/01 4.0 RPCSRC";
 #else
-__RCSID("$NetBSD: rstat_proc.c,v 1.34 2000/06/04 01:38:52 perry Exp $");
+__RCSID("$NetBSD: rstat_proc.c,v 1.35 2000/06/29 06:26:33 mrg Exp $");
 #endif
 #endif
 
@@ -61,7 +61,6 @@
 #include <syslog.h>
 #ifdef BSD
 #include <sys/sysctl.h>
-#include <vm/vm.h>
 #include <uvm/uvm_extern.h>
 #include <sys/dkstat.h>
 #include "dkstats.h"
diff -r f908c1c01927 -r 7728685768d1 usr.bin/systat/vmstat.c
--- a/usr.bin/systat/vmstat.c   Thu Jun 29 06:08:44 2000 +0000
+++ b/usr.bin/systat/vmstat.c   Thu Jun 29 06:26:33 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmstat.c,v 1.31 2000/06/05 21:36:34 mycroft Exp $      */
+/*     $NetBSD: vmstat.c,v 1.32 2000/06/29 06:29:16 mrg Exp $  */
 
 /*-
  * Copyright (c) 1983, 1989, 1992, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)vmstat.c   8.2 (Berkeley) 1/12/94";
 #endif
-__RCSID("$NetBSD: vmstat.c,v 1.31 2000/06/05 21:36:34 mycroft Exp $");
+__RCSID("$NetBSD: vmstat.c,v 1.32 2000/06/29 06:29:16 mrg Exp $");
 #endif /* not lint */
 
 /*
@@ -56,8 +56,6 @@
 #include <sys/sched.h>
 #include <sys/sysctl.h>
 
-#include <vm/vm.h>
-
 #include <uvm/uvm_extern.h>
 
 #include <ctype.h>
diff -r f908c1c01927 -r 7728685768d1 usr.bin/vmstat/vmstat.c
--- a/usr.bin/vmstat/vmstat.c   Thu Jun 29 06:08:44 2000 +0000
+++ b/usr.bin/vmstat/vmstat.c   Thu Jun 29 06:26:33 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vmstat.c,v 1.66 2000/06/04 19:15:21 cgd Exp $ */
+/* $NetBSD: vmstat.c,v 1.67 2000/06/29 06:29:14 mrg Exp $ */
 
 /*-
  * Copyright (c) 1998, 2000 The NetBSD Foundation, Inc.
@@ -80,7 +80,7 @@
 #if 0
 static char sccsid[] = "@(#)vmstat.c   8.2 (Berkeley) 3/1/95";
 #else
-__RCSID("$NetBSD: vmstat.c,v 1.66 2000/06/04 19:15:21 cgd Exp $");
+__RCSID("$NetBSD: vmstat.c,v 1.67 2000/06/29 06:29:14 mrg Exp $");
 #endif
 #endif /* not lint */
 
@@ -99,7 +99,10 @@
 #include <sys/sysctl.h>
 #include <sys/device.h>
 #include <sys/pool.h>
-#include <vm/vm.h>
+
+#include <uvm/uvm_extern.h>
+#include <uvm/uvm_stat.h>
+
 #include <err.h>
 #include <fcntl.h>
 #include <time.h>
@@ -116,8 +119,6 @@
 #include <limits.h>
 #include "dkstats.h"
 
-#include <uvm/uvm_stat.h>
-
 struct nlist namelist[] = {
 #define        X_BOOTTIME      0
        { "_boottime" },



Home | Main Index | Thread Index | Old Index