s/int/long/ in p->p_sig
authorBill Joy <bill@ucbvax.Berkeley.EDU>
Mon, 19 May 1980 02:39:19 +0000 (18:39 -0800)
committerBill Joy <bill@ucbvax.Berkeley.EDU>
Mon, 19 May 1980 02:39:19 +0000 (18:39 -0800)
SCCS-vsn: sys/sys/proc.h 3.4

usr/src/sys/sys/proc.h

index 2cfc61e..0d4f3dd 100644 (file)
@@ -1,4 +1,4 @@
-/*     proc.h  3.3     %H%     */
+/*     proc.h  3.4     %H%     */
 
 /*
  * One structure allocated per active
 
 /*
  * One structure allocated per active
@@ -23,7 +23,7 @@ struct        proc
        char    p_nice;         /* nice for cpu usage */
        char    p_slptime;      /* time since last block */
        char    p_cursig;
        char    p_nice;         /* nice for cpu usage */
        char    p_slptime;      /* time since last block */
        char    p_cursig;
-       int     p_sig;          /* signals pending to this process */
+       long    p_sig;          /* signals pending to this process */
        long    p_siga0;        /* low bit of 2 bit signal action */
        long    p_siga1;        /* high bit of 2 bit signal action */
 #define        p_ignsig p_siga0        /* ignored signal mask */
        long    p_siga0;        /* low bit of 2 bit signal action */
        long    p_siga1;        /* high bit of 2 bit signal action */
 #define        p_ignsig p_siga0        /* ignored signal mask */