Searched refs:signal (Results 76 - 100 of 1365) sorted by relevance

1234567891011>>

/macosx-10.10/ksh-23/ksh/src/cmd/ksh93/data/
H A Daliases.c22 #include <signal.h>
/macosx-10.10/libauto-186/auto_tester/
H A DEnliveningRace.m50 - (void)signal;
85 - (void)signal {
155 [condition signal];
167 [condition signal];
173 [condition signal];
179 [condition signal];
184 [condition signal];
189 [condition signal];
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DMachSignals.py2 Substitute for the signal module when using a CFRunLoop.
8 When a signal occurs the signal number is sent in a mach
12 In other words, Python's signal handling code does not wake
17 __all__ = ['getsignal', 'signal']
21 Return the signal handler for signal ``signum``. Returns ``None`` when
22 there is no signal handler for the signal.
26 def signal(signu function
[all...]
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DMachSignals.py2 Substitute for the signal module when using a CFRunLoop.
8 When a signal occurs the signal number is sent in a mach
12 In other words, Python's signal handling code does not wake
17 __all__ = ['getsignal', 'signal']
21 Return the signal handler for signal ``signum``. Returns ``None`` when
22 there is no signal handler for the signal.
26 def signal(signu function
[all...]
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/PyObjCTools/
H A DMachSignals.py2 Substitute for the signal module when using a CFRunLoop.
8 When a signal occurs the signal number is sent in a mach
12 In other words, Python's signal handling code does not wake
17 __all__ = ['getsignal', 'signal']
21 Return the signal handler for signal ``signum``. Returns ``None`` when
22 there is no signal handler for the signal.
26 def signal(signu function
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/
H A Drand-timer.c59 signal(SIGALRM, sigALRM); /* Reinstall SysV signal handler */
92 #define signal(S, F) fake_signal((S), (F)) macro
124 osa = signal(SIGALRM, sigALRM);
133 ochld = signal(SIGCHLD, SIG_IGN);
136 signal(SIGCHLD, ochld != SIG_ERR ? ochld : SIG_DFL);
155 signal(SIGCHLD, ochld != SIG_ERR ? ochld : SIG_DFL);
157 signal(SIGALRM, osa != SIG_ERR ? osa : SIG_DFL);
/macosx-10.10/WebCore-7600.1.25/platform/efl/DefaultTheme/widget/search/field/
H A Dsearch_field.edc108 signal: "enabled";
116 signal: "pressed";
124 signal: "focused";
132 signal: "hovered";
140 signal: "reset";
/macosx-10.10/dtrace-147/DTTk/Bin/
H A Dcrash.d64 proc:::signal-send
101 proc:::signal-send
111 proc:::signal-send
121 proc:::signal-send /self->crash && self->ptr != 0/
127 proc:::signal-send /self->crash && self->ptr != 0/
133 proc:::signal-send /self->crash && self->ptr != 0/
139 proc:::signal-send /self->crash && self->ptr != 0/
145 proc:::signal-send /self->crash && self->ptr != 0/
151 proc:::signal-send /self->crash && self->ptr != 0/
161 proc:::signal
[all...]
/macosx-10.10/dtrace-147/DTTk/Proc/
H A Dcrash.d64 proc:::signal-send
101 proc:::signal-send
111 proc:::signal-send
121 proc:::signal-send /self->crash && self->ptr != 0/
127 proc:::signal-send /self->crash && self->ptr != 0/
133 proc:::signal-send /self->crash && self->ptr != 0/
139 proc:::signal-send /self->crash && self->ptr != 0/
145 proc:::signal-send /self->crash && self->ptr != 0/
151 proc:::signal-send /self->crash && self->ptr != 0/
161 proc:::signal
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/gke/
H A Dgkrecord9 import signal
110 os.kill(spd_pid, signal.SIGINT)
111 signal.signal(signal.SIGINT, sigint)
117 signal.signal(signal.SIGINT, signal.SIG_DFL)
/macosx-10.10/postfix-255/postfix/src/postdrop/
H A Dpostdrop.c35 /* INT, QUIT or TERM signal, the queue file is deleted.
108 #include <signal.h>
172 /* postdrop_sig - catch signal and clean up */
181 * syslog(), so it should not be called from a user-triggered signal
184 * Assume atomic signal() updates, even when emulated with sigaction(). We
187 * configure postdrop_sig() as SIGINT handler before other signal
190 if (signal(SIGINT, SIG_IGN) != SIG_IGN) {
191 (void) signal(SIGQUIT, SIG_IGN);
192 (void) signal(SIGTERM, SIG_IGN);
193 (void) signal(SIGHU
[all...]
/macosx-10.10/vim-55/src/
H A Dos_win16.c30 #include <signal.h>
291 signal(SIGINT, SIG_IGN);
292 signal(SIGILL, SIG_IGN);
293 signal(SIGFPE, SIG_IGN);
294 signal(SIGSEGV, SIG_IGN);
295 signal(SIGTERM, SIG_IGN);
296 signal(SIGABRT, SIG_IGN);
347 signal(SIGINT, SIG_DFL);
348 signal(SIGILL, SIG_DFL);
349 signal(SIGFP
[all...]
/macosx-10.10/Libc-1044.1.2/gen/FreeBSD/
H A Dsignal.c31 static char sccsid[] = "@(#)signal.c 8.1 (Berkeley) 6/4/93";
34 __FBSDID("$FreeBSD: src/lib/libc/gen/signal.c,v 1.4 2007/01/09 00:27:55 imp Exp $");
37 * Almost backwards compatible signal.
40 #include <signal.h>
76 signal(s, a) function
H A Dpause.c41 #include <signal.h>
/macosx-10.10/Libc-1044.1.2/sys/
H A Dsigaction.c30 #include <signal.h>
31 #include <sys/signal.h>
35 * Intercept the sigaction syscall and use our signal trampoline
36 * as the signal handler instead. The code here is derived
/macosx-10.10/dtrace-147/test/tst/common/proc/
H A Dtst.discard.ksh29 # This script tests that the proc:::signal-discard probe fires correctly
39 proc:::signal-discard
48 proc:::signal-discard
/macosx-10.10/postfix-255/postfix/src/util/
H A Dfifo_open.c28 #include <signal.h>
56 signal(SIGALRM, stuck);
H A Dfile_limit.c45 #include <signal.h>
92 if (signal(SIGXFSZ, SIG_IGN) == SIG_ERR)
93 msg_fatal("signal(SIGXFSZ,SIG_IGN): %m");
/macosx-10.10/sudo-73/src/
H A Dsiglist.in5 # Note that if a system has multiple defines for the same signal
37 USR1 User defined signal 1
38 USR2 User defined signal 2
41 STOP Stopped (signal)
53 LWP Inter-LWP signal
/macosx-10.10/system_cmds-643.1.1/vipw.tproj/
H A Dpw_util.c78 #include <signal.h>
117 (void)signal(SIGALRM, SIG_IGN);
118 (void)signal(SIGHUP, SIG_IGN);
119 (void)signal(SIGINT, SIG_IGN);
120 (void)signal(SIGPIPE, SIG_IGN);
121 (void)signal(SIGQUIT, SIG_IGN);
122 (void)signal(SIGTERM, SIG_IGN);
123 (void)signal(SIGCONT, pw_cont);
/macosx-10.10/Heimdal-398.1.2/lib/libedit/src/
H A Dsig.h43 #include <signal.h>
/macosx-10.10/Libc-1044.1.2/compat-43/FreeBSD/
H A Dkillpg.c37 #include <signal.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblutil/
H A Dsignal.c20 #include <ac/signal.h>
/macosx-10.10/WTF-7600.1.24/wtf/threads/win/
H A DBinarySemaphoreWin.cpp41 void BinarySemaphore::signal() function in class:WTF::BinarySemaphore
/macosx-10.10/WebKit2-7600.1.25/Shared/linux/SeccompFilters/
H A DSeccompBroker.h34 #include <signal.h>

Completed in 246 milliseconds

1234567891011>>