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

12345678

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Dsigpipe.h30 struct sigaction old_pipe_act;
48 struct sigaction action;
50 memset(&ig->old_pipe_act, 0, sizeof(struct sigaction));
51 sigaction(SIGPIPE, NULL, &ig->old_pipe_act);
55 sigaction(SIGPIPE, &action, NULL);
68 sigaction(SIGPIPE, &ig->old_pipe_act, NULL);
72 /* for systems without sigaction */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/src/
H A Dplural-eval.c71 struct sigaction action;
75 sigaction (SIGFPE, &action, (struct sigaction *) NULL);
85 struct sigaction action;
89 sigaction (SIGFPE, &action, (struct sigaction *) NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Du_signal.c17 struct sigaction sa, osa;
31 if (sigaction(signum, &sa, &osa) < 0)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ntfs-3g-2009.3.8/libfuse-lite/
H A Dfuse_signals.c27 struct sigaction sa;
28 struct sigaction old_sa;
30 memset(&sa, 0, sizeof(struct sigaction));
35 if (sigaction(sig, NULL, &old_sa) == -1) {
41 sigaction(sig, &sa, NULL) == -1) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/
H A Ds390xcap.c20 struct sigaction ill_act, oact;
33 sigaction(SIGILL, &ill_act, &oact);
39 sigaction(SIGILL, &oact, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/
H A Ds390xcap.c20 struct sigaction ill_act, oact;
33 sigaction(SIGILL, &ill_act, &oact);
39 sigaction(SIGILL, &oact, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-i386/
H A Dbugs.c26 struct sigaction old, new;
34 sigaction(SIGILL, &new, &old);
43 sigaction(SIGILL, &old, &new);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/include/asm/
H A Dsyscall.h12 struct sigaction;
24 const struct sigaction __user *,
25 struct sigaction __user *,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/xz/
H A Dsignals.c80 struct sigaction sa;
95 struct sigaction old;
96 if (sigaction(sigs[i], NULL, &old) == 0
101 if (sigaction(sigs[i], &sa, NULL))
157 struct sigaction sa;
161 sigaction(sig, &sa, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/src/tools/misc/xz/src/xz/
H A Dsignals.c80 struct sigaction sa;
95 struct sigaction old;
96 if (sigaction(sigs[i], NULL, &old) == 0
101 if (sigaction(sigs[i], &sa, NULL))
157 struct sigaction sa;
161 sigaction(sig, &sa, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dsetsignal.c53 * We use "sigaction()" if available. We don't specify that the signal
61 * longer be any interesting systems without "sigaction()", however,
71 * they suck far less, as those systems have "sigaction()".
77 struct sigaction old, new;
81 if (sigaction(sig, &new, &old) < 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/Documentation/filesystems/
H A Ddnotify_test.c17 struct sigaction act;
23 sigaction(SIGRTMIN + 1, &act, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/
H A Devsignal-internal.h52 struct sigaction **sh_old;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libevent-1.4.14b-stable/
H A Devsignal.h40 struct sigaction **sh_old;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libkqueue-1.0.6/test/
H A Dtest.c79 struct sigaction sa;
87 sigaction(SIGSEGV, &sa, NULL);
88 sigaction(SIGABRT, &sa, NULL);
89 sigaction(SIGINT, &sa, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-utils/
H A Dsigint.c38 static struct sigaction old_sigint_sa, old_sigterm_sa;
85 struct sigaction sa;
104 if (sigaction(SIGINT, &sa, &old_sigint_sa) < 0) {
105 fprintf(stderr, "sigaction() failed: %s\n", strerror(errno));
110 if (sigaction(SIGTERM, &sa, &old_sigterm_sa) < 0) {
111 sigaction(SIGINT, &old_sigint_sa, NULL);
112 fprintf(stderr, "sigaction() failed: %s\n", strerror(errno));
130 sigaction(SIGTERM, &old_sigterm_sa, NULL);
131 sigaction(SIGINT, &old_sigint_sa, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-utils/
H A Dsigint.c38 static struct sigaction old_sigint_sa, old_sigterm_sa;
85 struct sigaction sa;
104 if (sigaction(SIGINT, &sa, &old_sigint_sa) < 0) {
105 fprintf(stderr, "sigaction() failed: %s\n", strerror(errno));
110 if (sigaction(SIGTERM, &sa, &old_sigterm_sa) < 0) {
111 sigaction(SIGINT, &old_sigint_sa, NULL);
112 fprintf(stderr, "sigaction() failed: %s\n", strerror(errno));
130 sigaction(SIGTERM, &old_sigterm_sa, NULL);
131 sigaction(SIGINT, &old_sigint_sa, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/loginutils/
H A Dvlock.c48 struct sigaction sa;
82 sigaction(SIGUSR1, &sa, NULL);
84 sigaction(SIGUSR2, &sa, NULL);
88 sigaction(SIGHUP, &sa, NULL);
89 sigaction(SIGQUIT, &sa, NULL);
90 sigaction(SIGINT, &sa, NULL);
91 sigaction(SIGTSTP, &sa, NULL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/common/
H A Dutil_sig.c42 * Use sigaction if it's available, otherwise use signal().
45 struct sigaction sa, osa;
50 (void)sigaction(s, &sa, &osa);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/sio/
H A Dmain.c45 struct sigaction sa, osa;
59 if (sigaction(signum, &sa, &osa) < 0)
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/frv/include/asm/
H A Dsignal.h14 #define SA_RESTORER 0x04000000 /* to get struct sigaction correct */
29 struct sigaction { struct
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dsignal.c100 struct sigaction act;
101 struct sigaction oldact;
115 sigaction(signum,&act,&oldact);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/bin/ad/
H A Dad_find.c54 struct sigaction sv;
59 if (sigaction(SIGTERM, &sv, NULL) < 0)
60 ERROR("error in sigaction(SIGTERM): %s", strerror(errno));
62 if (sigaction(SIGINT, &sv, NULL) < 0)
63 ERROR("error in sigaction(SIGINT): %s", strerror(errno));
65 memset(&sv, 0, sizeof(struct sigaction));
69 if (sigaction(SIGABRT, &sv, NULL) < 0)
70 ERROR("error in sigaction(SIGABRT): %s", strerror(errno));
72 if (sigaction(SIGHUP, &sv, NULL) < 0)
73 ERROR("error in sigaction(SIGHU
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mn10300/include/asm/
H A Dsignal.h128 struct sigaction { struct
136 struct sigaction sa;
141 struct sigaction { struct
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/netatalk-2.2.5/libatalk/util/
H A Dfault.c58 struct sigaction act;
59 struct sigaction oldact;
73 sigaction(signum,&act,&oldact);

Completed in 779 milliseconds

12345678