add SIGUSR1 and SIGUSR2
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 23 May 1985 10:32:07 +0000 (02:32 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 23 May 1985 10:32:07 +0000 (02:32 -0800)
SCCS-vsn: bin/csh/init.c 4.6
SCCS-vsn: old/sh/msg.c 4.4

usr/src/bin/csh/init.c
usr/src/old/sh/msg.c

index 6caf760..27a0d5d 100644 (file)
@@ -1,5 +1,5 @@
 #ifndef lint
 #ifndef lint
-static char *sccsid = "@(#)init.c      4.5 (Berkeley) %G%";
+static char *sccsid = "@(#)init.c      4.6 (Berkeley) %G%";
 #endif
 
 #include "sh.local.h"
 #endif
 
 #include "sh.local.h"
@@ -227,7 +227,7 @@ struct      mesg {
        "PROF", "Profiling timer expired",
        "WINCH","Window size changed",
        0,      "Signal 29",
        "PROF", "Profiling timer expired",
        "WINCH","Window size changed",
        0,      "Signal 29",
-       0,      "Signal 30",
-       0,      "Signal 31",
+       "USR1", "User defined signal 1",
+       "USR2", "User defined signal 2",
        0,      "Signal 32"
 };
        0,      "Signal 32"
 };
index 7c1ebe1..a4d9792 100644 (file)
@@ -1,5 +1,5 @@
 #ifndef lint
 #ifndef lint
-static char sccsid[] = "@(#)msg.c      4.3 %G%";
+static char sccsid[] = "@(#)msg.c      4.4 %G%";
 #endif
 
 #
 #endif
 
 #
@@ -121,8 +121,8 @@ STRING      sysmsg[] {
                "Profiling time alarm",
                "Window changed",
                "Signal 29",
                "Profiling time alarm",
                "Window changed",
                "Signal 29",
-               "Signal 30",
-               "Signal 31",
+               "User defined signal 1",
+               "User defined signal 2",
                "Signal 32",
 };
 INT            num_sysmsg = (sizeof sysmsg / sizeof sysmsg[0]);
                "Signal 32",
 };
 INT            num_sysmsg = (sizeof sysmsg / sizeof sysmsg[0]);