aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-12 16:19:09 +0000
committerRichard M. Stallman1994-01-12 16:19:09 +0000
commit0f0ea22919daf72c9ba4a97ee085c7f3e2823c9c (patch)
tree8e7a16513bd4254f40b7fe514c867c7580e21228 /src
parent75067849bfbfeeeced948e09960cf73206986472 (diff)
downloademacs-0f0ea22919daf72c9ba4a97ee085c7f3e2823c9c.tar.gz
emacs-0f0ea22919daf72c9ba4a97ee085c7f3e2823c9c.zip
(sys_siglist) [sun]: Additional Sun-specific signal names.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 83e1db6bcf2..23376cb9bce 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -2807,6 +2807,24 @@ char *sys_siglist[NSIG + 1] =
2807 "user defined signal 2", /* 17 SIGUSR2 */ 2807 "user defined signal 2", /* 17 SIGUSR2 */
2808 "death of a child", /* 18 SIGCLD */ 2808 "death of a child", /* 18 SIGCLD */
2809 "power-fail restart", /* 19 SIGPWR */ 2809 "power-fail restart", /* 19 SIGPWR */
2810#ifdef sun
2811 "window size change", /* 20 SIGWINCH */
2812 "urgent socket condition", /* 21 SIGURG */
2813 "pollable event occured", /* 22 SIGPOLL */
2814 "stop (cannot be caught or ignored)", /* 23 SIGSTOP */
2815 "user stop requested from tty", /* 24 SIGTSTP */
2816 "stopped process has been continued", /* 25 SIGCONT */
2817 "background tty read attempted", /* 26 SIGTTIN */
2818 "background tty write attempted", /* 27 SIGTTOU */
2819 "virtual timer expired", /* 28 SIGVTALRM */
2820 "profiling timer expired", /* 29 SIGPROF */
2821 "exceeded cpu limit", /* 30 SIGXCPU */
2822 "exceeded file size limit", /* 31 SIGXFSZ */
2823 "process's lwps are blocked", /* 32 SIGWAITING */
2824 "special signal used by thread library", /* 33 SIGLWP */
2825 "Special Signal Used By CPR", /* 34 SIGFREEZE */
2826 "Special Signal Used By CPR", /* 35 SIGTHAW */
2827#endif /* sun */
2810#endif /* not AIX */ 2828#endif /* not AIX */
2811 0 2829 0
2812 }; 2830 };