Lines Matching defs:SIGKILL
12 * Test SIGKILL for these items:
13 * 1. SIGKILL can not be set to be ignored, errno:EINVAL (POSIX).
14 * 2. SIGKILL can not be reset to default, errno:EINVAL (POSIX).
15 * 3. SIGKILL can not be set to be caught, errno:EINVAL (POSIX).
16 * 4. SIGKILL can not be ignored.
17 * 5. SIGKILL is reset to default failed but processed by default.
18 * 6. SIGKILL can not be caught.
52 signal(SIGKILL, tc->sighandler);
56 TST_EXP_FAIL2((long)signal(SIGKILL, tc->sighandler), EINVAL);
66 SAFE_KILL(pid, SIGKILL);
70 TST_EXP_EQ_SSZ(WTERMSIG(res), SIGKILL);