Home | History | Annotate | Download | only in sigaction

Lines Matching refs:ret

52  * UNRESOLVED(ret, descr);
53 * where descr is a description of the error and ret is an int
87 int ret;
98 ret = raise(SIGNAL);
100 if (ret != 0) {
101 UNRESOLVED(ret, "Failed to raise SIGSEGV again");
105 ret = sigpending(&pending);
107 if (ret != 0) {
108 UNRESOLVED(ret, "Failed to get pending signal set");
111 ret = sigismember(&pending, SIGNAL);
113 if (ret != 1) {
124 int ret;
136 ret = sigemptyset(&sa.sa_mask);
138 if (ret != 0) {
139 UNRESOLVED(ret, "Failed to empty signal set");
143 ret = sigaction(SIGNAL, &sa, 0);
145 if (ret != 0) {
146 UNRESOLVED(ret, "Failed to set signal handler");
149 ret = raise(SIGNAL);
151 if (ret != 0) {
152 UNRESOLVED(ret, "Failed to raise SIGSEGV");