Lines Matching defs:result
34 int result = sigprocmask(SIG_BLOCK, &set, NULL);
35 if (result != 0) {
36 t_error("%s failed: result = %d\n", __func__, result);
41 result = sigqueue(getpid(), sig, sigval);
42 if (result != 0) {
43 t_error("%s failed: result = %d\n", __func__, result);
49 result = sigwaitinfo(&set, &info);
54 if (result != sig) {
55 t_error("%s failed: result = %d\n", __func__, result);