../machine => machine
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 26 Apr 1989 02:01:03 +0000 (18:01 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Wed, 26 Apr 1989 02:01:03 +0000 (18:01 -0800)
SCCS-vsn: sys/kern/kern_clock.c 7.4
SCCS-vsn: sys/kern/kern_malloc.c 7.12
SCCS-vsn: sys/kern/kern_synch.c 7.7
SCCS-vsn: sys/kern/subr_prf.c 7.13
SCCS-vsn: sys/sys/param.h 7.8
SCCS-vsn: sys/sys/signal.h 7.4

usr/src/sys/kern/kern_clock.c
usr/src/sys/kern/kern_malloc.c
usr/src/sys/kern/kern_synch.c
usr/src/sys/kern/subr_prf.c
usr/src/sys/sys/param.h
usr/src/sys/sys/signal.h

index e1572de..3fda9e4 100644 (file)
@@ -3,7 +3,7 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)kern_clock.c        7.3 (Berkeley) %G%
+ *     @(#)kern_clock.c        7.4 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
 #include "vm.h"
 #include "text.h"
 
 #include "vm.h"
 #include "text.h"
 
-#include "../machine/reg.h"
-#include "../machine/psl.h"
+#include "machine/reg.h"
+#include "machine/psl.h"
 
 #if defined(vax) || defined(tahoe)
 
 #if defined(vax) || defined(tahoe)
-#include "../machine/mtpr.h"
-#include "../machine/clock.h"
+#include "machine/mtpr.h"
+#include "machine/clock.h"
 #endif
 
 #ifdef GPROF
 #endif
 
 #ifdef GPROF
index 395f2b1..1a9bed6 100644 (file)
@@ -14,7 +14,7 @@
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
- *     @(#)kern_malloc.c       7.11 (Berkeley) %G%
+ *     @(#)kern_malloc.c       7.12 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
@@ -26,7 +26,7 @@
 #include "kernel.h"
 #include "malloc.h"
 
 #include "kernel.h"
 #include "malloc.h"
 
-#include "../machine/pte.h"
+#include "machine/pte.h"
 
 struct kmembuckets bucket[MINBUCKET + 16];
 struct kmemstats kmemstats[M_LAST];
 
 struct kmembuckets bucket[MINBUCKET + 16];
 struct kmemstats kmemstats[M_LAST];
index d6110aa..49b2ee7 100644 (file)
@@ -3,12 +3,12 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)kern_synch.c        7.6 (Berkeley) %G%
+ *     @(#)kern_synch.c        7.7 (Berkeley) %G%
  */
 
  */
 
-#include "../machine/pte.h"
-#include "../machine/psl.h"
-#include "../machine/mtpr.h"
+#include "machine/pte.h"
+#include "machine/psl.h"
+#include "machine/mtpr.h"
 
 #include "param.h"
 #include "systm.h"
 
 #include "param.h"
 #include "systm.h"
index 3202988..00dc46a 100644 (file)
@@ -3,7 +3,7 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)subr_prf.c  7.12 (Berkeley) %G%
+ *     @(#)subr_prf.c  7.13 (Berkeley) %G%
  */
 
 #include "param.h"
  */
 
 #include "param.h"
@@ -21,9 +21,9 @@
 #include "tty.h"
 #include "syslog.h"
 
 #include "tty.h"
 #include "syslog.h"
 
-#include "../machine/mtpr.h"
+#include "machine/mtpr.h"
 #ifdef KADB
 #ifdef KADB
-#include "../machine/kdbparam.h"
+#include "machine/kdbparam.h"
 #endif
 
 #define TOCONS 0x1
 #endif
 
 #define TOCONS 0x1
index dd6aa38..9290fdc 100644 (file)
@@ -3,7 +3,7 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)param.h     7.7 (Berkeley) %G%
+ *     @(#)param.h     7.8 (Berkeley) %G%
  */
 
 #define        BSD     198810          /* system version  (year & month) */
  */
 
 #define        BSD     198810          /* system version  (year & month) */
@@ -68,7 +68,7 @@
  * Machine type dependent parameters.
  */
 #ifdef KERNEL
  * Machine type dependent parameters.
  */
 #ifdef KERNEL
-#include "../machine/machparam.h"
+#include "machine/machparam.h"
 #else
 #include <machine/machparam.h>
 #endif
 #else
 #include <machine/machparam.h>
 #endif
index af9438c..5c0eae4 100644 (file)
@@ -3,14 +3,14 @@
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
  * All rights reserved.  The Berkeley software License Agreement
  * specifies the terms and conditions for redistribution.
  *
- *     @(#)signal.h    7.3 (Berkeley) %G%
+ *     @(#)signal.h    7.4 (Berkeley) %G%
  */
 
 #ifndef        NSIG
 #define NSIG   32
 
 #ifdef KERNEL
  */
 
 #ifndef        NSIG
 #define NSIG   32
 
 #ifdef KERNEL
-#include "../machine/trap.h"   /* codes for SIGILL, SIGFPE */
+#include "machine/trap.h"      /* codes for SIGILL, SIGFPE */
 #else
 #include <machine/trap.h>      /* codes for SIGILL, SIGFPE */
 #endif
 #else
 #include <machine/trap.h>      /* codes for SIGILL, SIGFPE */
 #endif