lint
authorBill Joy <root@ucbvax.Berkeley.EDU>
Fri, 22 Oct 1982 09:30:41 +0000 (01:30 -0800)
committerBill Joy <root@ucbvax.Berkeley.EDU>
Fri, 22 Oct 1982 09:30:41 +0000 (01:30 -0800)
SCCS-vsn: sys/sys/kernel.h 4.6
SCCS-vsn: sys/sys/proc.h 4.16

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

index 8db48f9..79c9ef3 100644 (file)
@@ -1,9 +1,11 @@
-/*     kernel.h        4.5     82/10/20        */
+/*     kernel.h        4.6     82/10/21        */
 
 /*
  * Global variables for the kernel
  */
 
 
 /*
  * Global variables for the kernel
  */
 
+long   rmalloc();
+
 /* 1.1 */
 long   hostid;
 char   hostname[32];
 /* 1.1 */
 long   hostid;
 char   hostname[32];
index 967cbac..623a183 100644 (file)
@@ -1,4 +1,4 @@
-/*     proc.h  4.15    82/09/08        */
+/*     proc.h  4.16    82/10/21        */
 
 #include "mush.h"
 #include "mu_msg.h"
 
 #include "mush.h"
 #include "mu_msg.h"
@@ -55,11 +55,14 @@ struct      proc {
        struct  proc *p_cptr;   /* pointer to youngest living child */
        struct  proc *p_osptr;  /* pointer to older sibling processes */
        struct  proc *p_ysptr;  /* pointer to younger siblings */
        struct  proc *p_cptr;   /* pointer to youngest living child */
        struct  proc *p_osptr;  /* pointer to older sibling processes */
        struct  proc *p_ysptr;  /* pointer to younger siblings */
+#ifdef QUOTA
        struct  quota *p_quota; /* quotas for this process (MUSH) */
        struct  quota *p_quota; /* quotas for this process (MUSH) */
+#endif
+#ifdef MUSH
        mmsgbuf p_mb;           /* pending message */
        int     p_msgflgs;      /* message flags */
        mmsgbuf p_mb;           /* pending message */
        int     p_msgflgs;      /* message flags */
+#endif
        struct  itimerval p_realtimer;
        struct  itimerval p_realtimer;
-       int     p_SSS[3];
 };
 
 #define        PIDHSZ          63
 };
 
 #define        PIDHSZ          63