系统定义的信号有: [以下来源于as4u3 "/usr/include/bits/signum.h" 文件]
--------------------------------
/* fake signal functions. */
#define sig_err ((__sighandler_t) -1) /* error return. */
#define sig_dfl ((__sighandler_t) 0) /* default action. */
#define sig_ign ((__sighandler_t) 1) /* ignore signal. */
#ifdef __use_unix98
# define sig_hold ((__sighandler_t) 2) /* add signal to hold mask. */
#endif
/* signals. */
#define sighup 1 /* hangup (posix). */
#define sigint 2 /* interrupt (ansi). */
#define sigquit 3 /* quit (posix). */
#define sigill 4 /* illegal instruction (ansi). */
#define sigtrap 5 /* trace trap (posix). */
#define sigabrt 6 /* abort (ansi). */
#define sigiot 6 /* iot trap (4.2 bsd). */
#define sigbus 7 /* bus error (4.2 bsd). */
#define sigfpe 8 /* floating-point exception (ansi). */
#define sigkill 9 /* kill, unblockable (posix). */
#define sigusr1 10 /* user-defined signal 1 (posix). */
#define sigsegv 11 /* segmentation violation (ansi). */
#define sigusr2 12 /* user-defined signal 2 (posix). */
#define sigpipe 13 /* broken pipe (posix). */
#define sigalrm 14 /* alarm clock (posix). */
#define sigterm 15 /* termination (ansi). */
#define sigstkflt 16 /* stack fault. */
#define sigcld sigchld /* same as sigchld (system v). */
#define sigchld 17 /* child status has changed (posix). */
#define sigcont 18 /* continue (posix). */
#define sigstop 19 /* stop, unblockable (posix). */
#define sigtstp 20 /* keyboard stop (posix). */
#define sigttin 21 /* background read from tty (posix). */
#define sigttou 22 /* background write to tty (posix). */
#define sigurg 23 /* urgent condition on socket (4.2 bsd). */
#define sigxcpu 24 /* cpu limit exceeded (4.2 bsd). */
#define sigxfsz 25 /* file size limit exceeded (4.2 bsd). */
#define sigvtalrm 26 /* virtual alarm clock (4.2 bsd). */
#define sigprof 27 /* profiling alarm clock (4.2 bsd). */
#define sigwinch 28 /* window size change (4.3 bsd, sun). */
#define sigpoll sigio /* pollable event occurred (system v). */
#define sigio 29 /* i/o now possible (4.2 bsd). */
#define sigpwr 30 /* power failure restart (system v). */
#define sigsys 31 /* bad system call. */
#define sigunused 31
#define _nsig 65 /* biggest signal number 1
(including real-time signals). */
#define sigrtmin (__libc_current_sigrtmin ())
#define sigrtmax (__libc_current_sigrtmax ())
/* these are the hard limits of the kernel. these values should not be
used directly at user level. */
#define __sigrtmin 32
#define __sigrtmax (_nsig - 1)
------------------------------------
[gan@localhost ~]$ kill -l
1) sighup 2) sigint 3) sigquit 4) sigill
5) sigtrap 6) sigabrt 7) sigbus 8) sigfpe
9) sigkill 10) sigusr1 11) sigsegv 12) sigusr2
13) sigpipe 14) sigalrm 15) sigterm 17) sigchld
18) sigcont 19) sigstop 20) sigtstp 21) sigttin
22) sigttou 23) sigurg 24) sigxcpu 25) sigxfsz
26) sigvtalrm 27) sigprof 28) sigwinch 29) sigio
30) sigpwr 31) sigsys 34) sigrtmin 35) sigrtmin 1
36) sigrtmin 2 37) sigrtmin 3 38) sigrtmin 4 39) sigrtmin 5
40) sigrtmin 6 41) sigrtmin 7 42) sigrtmin 8 43) sigrtmin 9
44) sigrtmin 10 45) sigrtmin 11 46) sigrtmin 12 47) sigrtmin 13
48) sigrtmin 14 49) sigrtmin 15 50) sigrtmax-14 51) sigrtmax-13
52) sigrtmax-12 53) sigrtmax-11 54) sigrtmax-10 55) sigrtmax-9
56) sigrtmax-8 57) sigrtmax-7 58) sigrtmax-6 59) sigrtmax-5
60) sigrtmax-4 61) sigrtmax-3 62) sigrtmax-2 63) sigrtmax-1
64) sigrtmax
--------------------------------------------
看到[]上面的一个问题:
本人在linux上作了一套程序,现在要向sco移植,编译通过后发现sco不认识我自定义的下列信号
#define sigload 61
#define sigdead 38
#define sigkillm 39
#define sigkillc 60
#define sigkillw 57
在linux上kill这些信号给进程没有问题,但是在sco上这些自定义的信号被kill后,kill返回值小于零
虽然系统预留了sigusr1 和 sigusr2, 但是明显不够用,我该怎么办!!!
>>>看来不同的系统信号使用差异很大阿!
但我认为如果真的只可以使用sigusr2, sigusr1两个信号也一样可以实现多个信号类似的功能.
>>>
sigqueue()是比较新的发送信号系统调用,主要是针对实时信号提出的(当然也支持前32种),支持信号带有参数,与函数sigaction()配合使用。
sigqueue的第一个参数是指定接收信号的进程id,第二个参数确定即将发送的信号,第三个参数是一个联合数据结构union sigval,指定了信号传递的参数,即通常所说的4字节值。
typedef union sigval {
int sival_int;
void *sival_ptr;
}sigval_t;
----可以使用同一个信号下不同的参数应该可以实现.
阅读(2882) | 评论(0) | 转发(0) |