summaryrefslogtreecommitdiff
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-04-15 22:00:44 +0000
committerRichard M. Stallman <rms@gnu.org>1994-04-15 22:00:44 +0000
commit8481551822e106c4c5650033b62ad0043e9cbddb (patch)
tree769ef22b868a940e8d5a22521fcb2149613ba0e3 /src/sysdep.c
parent1fbee711ef01b305ec7068f85cf83696f3473381 (diff)
downloademacs-8481551822e106c4c5650033b62ad0043e9cbddb.tar.gz
(sys_siglist) [sun]: Check SIGFREEZE and SIGTHAW defined.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 3de75eb6dc6..29505c31cfa 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2935,8 +2935,12 @@ char *sys_siglist[NSIG + 1] =
"exceeded file size limit", /* 31 SIGXFSZ */
"process's lwps are blocked", /* 32 SIGWAITING */
"special signal used by thread library", /* 33 SIGLWP */
+#ifdef SIGFREEZE
"Special Signal Used By CPR", /* 34 SIGFREEZE */
+#endif
+#ifdef SIGTHAW
"Special Signal Used By CPR", /* 35 SIGTHAW */
+#endif
#endif /* sun */
#endif /* not AIX */
0