Searched refs:sigaction (Results 1 - 25 of 31) sorted by relevance

12

/barrelfish-master/lib/libc/sys/
H A Dsigaction.c41 __weak_reference(sigaction, __libc_sigaction);
43 #pragma weak sigaction macro
45 sigaction(int sig, const struct sigaction *act, struct sigaction *oact) function
48 return (((int (*)(int, const struct sigaction *, struct sigaction *))
H A DMakefile.inc72 SRCS+= sigaction.c
73 NOASM+= sigaction.o
75 INTERPOSED+= sigaction
289 sigaction.2 \
/barrelfish-master/lib/libc/gen/
H A Dsiginterrupt.c49 struct sigaction sa;
52 if ((ret = __libc_sigaction(sig, (struct sigaction *)0, &sa)) < 0)
61 return (__libc_sigaction(sig, &sa, (struct sigaction *)0));
H A Dsignal.c49 struct sigaction sa, osa;
H A Ddaemon.c49 struct sigaction osa, sa;
H A Dreadpassphrase.c52 struct sigaction sa, savealrm, saveint, savehup, savequit, saveterm;
53 struct sigaction savetstp, savettin, savettou, savepipe;
/barrelfish-master/lib/posixcompat/
H A Dsignal.c68 int sigaction(int signum, const struct sigaction *act, function
69 struct sigaction *oldact)
71 POSIXCOMPAT_DEBUG("Warning: sigaction(%d, %p, %p) ignored\n",
/barrelfish-master/lib/openssl-1.0.0d/crypto/
H A Ds390xcap.c17 struct sigaction ill_act,oact;
27 sigaction (SIGILL,&ill_act,&oact);
35 sigaction (SIGILL,&oact,NULL);
H A Dsparcv9cap.c170 struct sigaction common_act,ill_oact,bus_oact;
202 sigaction(SIGILL,&common_act,&ill_oact);
203 sigaction(SIGBUS,&common_act,&bus_oact);/* T1 fails 16-bit ldda [on Linux] */
231 sigaction(SIGBUS,&bus_oact,NULL);
232 sigaction(SIGILL,&ill_oact,NULL);
/barrelfish-master/include/
H A Dsignal.h78 int sigaction(int, const struct sigaction * __restrict,
79 struct sigaction * __restrict);
/barrelfish-master/lib/libc/secure/
H A Dstack_protector.c82 struct sigaction sa;
97 (void)sigaction(SIGABRT, &sa, NULL);
/barrelfish-master/lib/libc/tests/gen/
H A Ddlopen_empty_test.c64 struct sigaction act, oact;
77 ATF_CHECK_MSG(sigaction(SIGSEGV, &act, &oact) != -1,
78 "sigaction() failed");
H A Dpopen_test.c142 struct sigaction act, oact;
162 ATF_CHECK_MSG(sigaction(SIGPIPE, &act, &oact) != -1,
163 "sigaction() failed");
180 ATF_CHECK_MSG(sigaction(SIGPIPE, &oact, NULL) != -1,
181 "sigaction() failed");
H A Dwordexp_test.c276 struct sigaction sa;
284 r = sigaction(SIGCHLD, &sa, NULL);
294 r = sigaction(SIGCHLD, &sa, NULL);
/barrelfish-master/usr/eclipseclp/Kernel/src/
H A Daddrmap.c109 typedef struct sigaction sig_action_t;
260 (void) sigaction(sig,
261 (struct sigaction *) 0,
286 res = sigaction(sig, &act, (struct sigaction *) 0);
307 res = sigaction(sig, action, (struct sigaction *) 0);
/barrelfish-master/lib/libc/compat-43/
H A Dsigcompat.c47 struct sigaction sa, osa;
48 struct sigaction *sap, *osap;
133 struct sigaction sa;
155 struct sigaction sa, psa;
/barrelfish-master/lib/libc/stdlib/
H A Dabort.c49 struct sigaction act;
H A Dsystem.c63 struct sigaction ign, intact, quitact;
/barrelfish-master/lib/libc/include/
H A Dlibc_private.h305 struct sigaction;
356 int __sys_sigaction(int, const struct sigaction *,
357 struct sigaction *);
375 int __libc_sigaction(int, const struct sigaction *,
376 struct sigaction *) __hidden;
H A Dun-namespace.h208 #undef sigaction macro
242 int _sigaction(int, const struct sigaction *, struct sigaction *);
/barrelfish-master/lib/openssl-1.0.0d/demos/tunala/
H A Dip.c11 struct sigaction sa;
16 if(sigaction(SIGPIPE, &sa, NULL) != 0)
/barrelfish-master/lib/openssl-1.0.0d/crypto/des/
H A Dread_pwd.c67 * are on a POSIX system and have sigaction and termios. */
78 /* #define SIGACTION */ /* Define this if you have sigaction() */
210 static struct sigaction savsig[NX509_SIG];
420 struct sigaction sa;
437 sigaction(i,&sa,&savsig[i]);
463 sigaction(i,&savsig[i],NULL);
/barrelfish-master/lib/openssl-1.0.0d/crypto/ui/
H A Dui_openssl.c126 * sigaction and fileno included. -pedantic would be more appropriate for
146 * are on a POSIX system and have sigaction and termios. */
288 static struct sigaction savsig[NX509_SIG];
601 struct sigaction sa;
630 sigaction(i,&sa,&savsig[i]);
664 sigaction(i,&savsig[i],NULL);
/barrelfish-master/usr/tests/msun/
H A Dfenv_test.c349 struct sigaction act;
390 assert(sigaction(SIGFPE, &act, NULL) == 0);
429 struct sigaction act;
467 assert(sigaction(SIGFPE, &act, NULL) ==
/barrelfish-master/lib/openssl-1.0.0d/apps/
H A Ddsaparam.c305 struct sigaction act;
310 if(sigaction(SIGALRM, &act, NULL) != 0)

Completed in 192 milliseconds

12