Lines Matching refs:sig
23 void handler(int sig)
30 * @tc.desc : removes sig from the calling process's signal mask
37 int sig = SIGALRM;
40 int result = sigaction(sig, &act, &old_act);
46 result = sighold(sig);
59 result = sigismember(&set, sig);
65 result = raise(sig);
72 result = sigpause(sig);
87 result = sigismember(&set, sig);
92 result = sigrelse(sig);
102 result = sigismember(&set, sig);
110 * @tc.desc : removes an invalid sig from the calling process's signal mask
116 int sig = 99999;
117 int result = sigrelse(sig);