more timer stuff
authorBill Joy <root@ucbvax.Berkeley.EDU>
Tue, 7 Sep 1982 14:01:31 +0000 (06:01 -0800)
committerBill Joy <root@ucbvax.Berkeley.EDU>
Tue, 7 Sep 1982 14:01:31 +0000 (06:01 -0800)
SCCS-vsn: sys/sys/kernel.h 4.2
SCCS-vsn: sys/sys/proc.h 4.14
SCCS-vsn: sys/sys/systm.h 4.27
SCCS-vsn: sys/sys/user.h 4.18

usr/src/sys/sys/kernel.h
usr/src/sys/sys/proc.h
usr/src/sys/sys/systm.h
usr/src/sys/sys/user.h

index ad49bbf..78b2cc2 100644 (file)
@@ -1,4 +1,4 @@
-/*     kernel.h        4.1     82/09/04        */
+/*     kernel.h        4.2     82/09/06        */
 
 /*
  * Global variables for the kernel
 
 /*
  * Global variables for the kernel
@@ -7,9 +7,12 @@
 /* 1.1 */
 long   hostid;
 char   hostname[32];
 /* 1.1 */
 long   hostid;
 char   hostname[32];
+int    hostnamelen;
 int    nextpid;
 
 /* 1.2 */
 struct timeval boottime;
 struct timeval time;
 struct timezone tz;                    /* XXX */
 int    nextpid;
 
 /* 1.2 */
 struct timeval boottime;
 struct timeval time;
 struct timezone tz;                    /* XXX */
+int    hz;
+int    tick;
index 061f9f7..b7dedbf 100644 (file)
@@ -1,4 +1,4 @@
-/*     proc.h  4.13    82/09/04        */
+/*     proc.h  4.14    82/09/06        */
 
 #include "mush.h"
 #include "mu_msg.h"
 
 #include "mush.h"
 #include "mu_msg.h"
@@ -59,6 +59,7 @@ struct        proc {
        mmsgbuf p_mb;           /* pending message */
        int     p_msgflgs;      /* message flags */
        struct  itimerval p_realtimer;
        mmsgbuf p_mb;           /* pending message */
        int     p_msgflgs;      /* message flags */
        struct  itimerval p_realtimer;
+       int     p_XXX;          /* XXX */
        struct  timeval p_seltimer;
 };
 
        struct  timeval p_seltimer;
 };
 
index 822737e..e9c5368 100644 (file)
@@ -1,4 +1,4 @@
-/*     systm.h 4.26    82/09/04        */
+/*     systm.h 4.27    82/09/06        */
 
 /*
  * Random set of variables
 
 /*
  * Random set of variables
@@ -9,7 +9,6 @@ int     hz;                     /* frequency of the clock */
 int    timezone;               /* minutes west from greenwich */
 int    dstflag;                /* daylight savings time in effect? */
 char   version[];              /* system version */
 int    timezone;               /* minutes west from greenwich */
 int    dstflag;                /* daylight savings time in effect? */
 char   version[];              /* system version */
-int    lbolt;                  /* time of day in 60th not in time */
 int    hand;                   /* current index into coremap used by daemon */
 
 /*
 int    hand;                   /* current index into coremap used by daemon */
 
 /*
index c6cc333..eb96509 100644 (file)
@@ -1,4 +1,4 @@
-/*     user.h  4.17    82/09/04        */
+/*     user.h  4.18    82/09/06        */
 
 #include <sys/pcb.h>
 #include <sys/dmap.h>
 
 #include <sys/pcb.h>
 #include <sys/dmap.h>
@@ -77,6 +77,7 @@ struct        user {
        struct  rusage u_ru;            /* stats for this proc */
        struct  rusage u_cru;           /* sum of stats for reaped children */
        struct  itimerval u_timer[3];
        struct  rusage u_ru;            /* stats for this proc */
        struct  rusage u_cru;           /* sum of stats for reaped children */
        struct  itimerval u_timer[3];
+       int     u_XXX[3];
        time_t  u_start;
        short   u_acflag;
 
        time_t  u_start;
        short   u_acflag;