Lines Matching defs:sig
23 void action(int sig, siginfo_t *info, void *ctx)
25 if (sig != SIGALRM) {
26 t_error("%s failed: sig = %d\n", __func__, sig);
53 int sig = SIGALRM;
57 int result = sigaction(sig, &act, &old_act);
66 result = sigqueue(getpid(), sig, sigval);
82 * @tc.desc : queue a signal with an invalid sig
87 int sig = 99999;
91 int result = sigqueue(getpid(), sig, sigval);