Source-Changes-HG archive

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

[src/trunk]: src/usr.bin/top If we absolutely must have this program in the t...



details:   https://anonhg.NetBSD.org/src/rev/ea4da06ffaa2
branches:  trunk
changeset: 471820:ea4da06ffaa2
user:      ross <ross%NetBSD.org@localhost>
date:      Mon Apr 12 06:02:25 1999 +0000

description:
If we absolutely must have this program in the tree, it needs to have
rcs id keywords.

diffstat:

 usr.bin/top/boolean.h            |  2 ++
 usr.bin/top/commands.c           |  2 ++
 usr.bin/top/commands.h           |  2 ++
 usr.bin/top/display.c            |  2 ++
 usr.bin/top/display.h            |  2 ++
 usr.bin/top/layout.h             |  2 ++
 usr.bin/top/loadavg.h            |  2 ++
 usr.bin/top/machine.h            |  2 ++
 usr.bin/top/machine/m_netbsd13.c |  4 +++-
 usr.bin/top/os.h                 |  2 ++
 usr.bin/top/patchlevel.h         |  2 ++
 usr.bin/top/screen.c             |  2 ++
 usr.bin/top/screen.h             |  2 ++
 usr.bin/top/top.c                |  2 ++
 usr.bin/top/top.h                |  2 ++
 usr.bin/top/top.local.h          |  2 ++
 usr.bin/top/username.c           |  2 ++
 usr.bin/top/username.h           |  2 ++
 usr.bin/top/utils.c              |  2 ++
 usr.bin/top/utils.h              |  2 ++
 usr.bin/top/version.c            |  2 ++
 21 files changed, 43 insertions(+), 1 deletions(-)

diffs (197 lines):

diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/boolean.h
--- a/usr.bin/top/boolean.h     Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/boolean.h     Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: boolean.h,v 1.2 1999/04/12 06:02:25 ross Exp $ */
+
 /* My favorite names for boolean values */
 #define  No    0
 #define  Yes   1
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/commands.c
--- a/usr.bin/top/commands.c    Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/commands.c    Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: commands.c,v 1.4 1999/04/12 06:02:25 ross Exp $        */
+
 /*
  *  Top users/processes display for Unix
  *  Version 3
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/commands.h
--- a/usr.bin/top/commands.h    Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/commands.h    Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: commands.h,v 1.2 1999/04/12 06:02:25 ross Exp $        */
+
 void show_help __P((struct statics *));
 char *next_field __P((char *));
 int scanint __P((char *, int *));
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/display.c
--- a/usr.bin/top/display.c     Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/display.c     Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: display.c,v 1.3 1999/04/12 06:02:25 ross Exp $ */
+
 /*
  *  Top users/processes display for Unix
  *  Version 3
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/display.h
--- a/usr.bin/top/display.h     Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/display.h     Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: display.h,v 1.3 1999/04/12 06:02:26 ross Exp $ */
+
 /* constants needed for display.c */
 
 /* "type" argument for new_message function */
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/layout.h
--- a/usr.bin/top/layout.h      Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/layout.h      Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: layout.h,v 1.2 1999/04/12 06:02:26 ross Exp $  */
+
 /*
  *  Top - a top users display for Berkeley Unix
  *
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/loadavg.h
--- a/usr.bin/top/loadavg.h     Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/loadavg.h     Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: loadavg.h,v 1.2 1999/04/12 06:02:26 ross Exp $ */
+
 /*
  *  Top - a top users display for Berkeley Unix
  *
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/machine.h
--- a/usr.bin/top/machine.h     Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/machine.h     Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: machine.h,v 1.3 1999/04/12 06:02:26 ross Exp $ */
+
 /*
  *  This file defines the interface between top and the machine-dependent
  *  module.  It is NOT machine dependent and should not need to be changed
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/machine/m_netbsd13.c
--- a/usr.bin/top/machine/m_netbsd13.c  Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/machine/m_netbsd13.c  Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: m_netbsd13.c,v 1.4 1999/04/12 06:02:27 ross Exp $      */
+
 /*
  * top - a top users display for Unix
  *
@@ -32,7 +34,7 @@
  *             matthew green <mrg%eterna.com.au@localhost>
  *
  *
- * $Id: m_netbsd13.c,v 1.3 1999/04/12 01:53:06 ross Exp $
+ * $Id: m_netbsd13.c,v 1.4 1999/04/12 06:02:27 ross Exp $
  */
 #define UVM
 
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/os.h
--- a/usr.bin/top/os.h  Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/os.h  Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: os.h,v 1.4 1999/04/12 06:02:26 ross Exp $      */
+
 #include <sys/types.h>
 #include <sys/param.h> /* This defines BSD */
 #if defined(BSD) && !defined(BSD4_4) && !defined(__osf__)
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/patchlevel.h
--- a/usr.bin/top/patchlevel.h  Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/patchlevel.h  Mon Apr 12 06:02:25 1999 +0000
@@ -1,2 +1,4 @@
+/*     $NetBSD: patchlevel.h,v 1.2 1999/04/12 06:02:26 ross Exp $      */
+
 #define PATCHLEVEL 5
 #define BETA "beta9"
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/screen.c
--- a/usr.bin/top/screen.c      Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/screen.c      Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: screen.c,v 1.3 1999/04/12 06:02:26 ross Exp $  */
+
 /*
  *  Top users/processes display for Unix
  *  Version 3
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/screen.h
--- a/usr.bin/top/screen.h      Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/screen.h      Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: screen.h,v 1.3 1999/04/12 06:02:26 ross Exp $  */
+
 /*
  *  top - a top users display for Unix 4.2
  *
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/top.c
--- a/usr.bin/top/top.c Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/top.c Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: top.c,v 1.4 1999/04/12 06:02:26 ross Exp $     */
+
 char *copyright =
     "Copyright (c) 1984 through 1996, William LeFebvre";
 
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/top.h
--- a/usr.bin/top/top.h Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/top.h Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: top.h,v 1.3 1999/04/12 06:02:26 ross Exp $     */
+
 /*
  *  Top - a top users display for Berkeley Unix
  *
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/top.local.h
--- a/usr.bin/top/top.local.h   Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/top.local.h   Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: top.local.h,v 1.2 1999/04/12 06:02:26 ross Exp $       */
+
 /*
  *  Top - a top users display for Berkeley Unix
  *
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/username.c
--- a/usr.bin/top/username.c    Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/username.c    Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: username.c,v 1.3 1999/04/12 06:02:26 ross Exp $        */
+
 /*
  *  Top users/processes display for Unix
  *  Version 3
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/username.h
--- a/usr.bin/top/username.h    Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/username.h    Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: username.h,v 1.2 1999/04/12 06:02:26 ross Exp $        */
+
 void init_hash __P((void));
 char *username __P((int));
 int userid __P((char *));
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/utils.c
--- a/usr.bin/top/utils.c       Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/utils.c       Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: utils.c,v 1.4 1999/04/12 06:02:26 ross Exp $   */
+
 /*
  *  Top users/processes display for Unix
  *  Version 3
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/utils.h
--- a/usr.bin/top/utils.h       Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/utils.h       Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: utils.h,v 1.3 1999/04/12 06:02:26 ross Exp $   */
+
 /*
  *  Top users/processes display for Unix
  *  Version 3
diff -r 26e60af1873c -r ea4da06ffaa2 usr.bin/top/version.c
--- a/usr.bin/top/version.c     Mon Apr 12 05:46:57 1999 +0000
+++ b/usr.bin/top/version.c     Mon Apr 12 06:02:25 1999 +0000
@@ -1,3 +1,5 @@
+/*     $NetBSD: version.c,v 1.3 1999/04/12 06:02:26 ross Exp $ */
+
 /*
  *  Top users/processes display for Unix
  *  Version 3



Home | Main Index | Thread Index | Old Index