Searched refs:signal (Results 1 - 25 of 1349) sorted by relevance

1234567891011>>

/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DSignals.py8 This function will install signal handlers that print a stacktrace and
9 then reraise the signal.
12 Restores the signal handlers to the state they had before the call to
15 This module is not designed to provide fine grained control over signal
18 as easily cause a crash when such a signal gets in.
23 import signal
33 the signal handler used in this module: print a stacktrace and
34 then re-raise the signal
37 print "*** Handling fatal signal '%d'." % signum
44 Install our signal handle
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/Lib/PyObjCTools/
H A DSignals.py8 This function will install signal handlers that print a stacktrace and
9 then reraise the signal.
12 Restores the signal handlers to the state they had before the call to
15 This module is not designed to provide fine grained control over signal
18 as easily cause a crash when such a signal gets in.
23 import signal
33 the signal handler used in this module: print a stacktrace and
34 then re-raise the signal
37 print "*** Handling fatal signal '%d'." % signum
44 Install our signal handle
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Lib/PyObjCTools/
H A DSignals.py8 This function will install signal handlers that print a stacktrace and
9 then reraise the signal.
12 Restores the signal handlers to the state they had before the call to
15 This module is not designed to provide fine grained control over signal
18 as easily cause a crash when such a signal gets in.
23 import signal
33 the signal handler used in this module: print a stacktrace and
34 then re-raise the signal
37 print("*** Handling fatal signal '%d'." % signum)
44 Install our signal handle
[all...]
/macosx-10.10.1/groff-38/groff/src/utils/indxbib/
H A Dsignal.c20 /* Unfortunately vendors seem to have problems writing a <signal.h>
21 that is correct for C++, so we implement all signal handling in C. */
30 #include <signal.h>
43 signal(signum, SIG_DFL);
57 signal(SIGHUP, handle_fatal_signal);
59 signal(SIGINT, handle_fatal_signal);
60 signal(SIGTERM, handle_fatal_signal);
72 signal(SIGHUP, SIG_IGN);
74 signal(SIGINT, SIG_IGN);
75 signal(SIGTER
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/hosts/
H A Dalphalinux.h6 ((abfd)->tdata.trad_core_data->u.signal)
H A Dm68klinux.h6 ((abfd)->tdata.trad_core_data->u.signal)
/macosx-10.10.1/ruby-106/ruby/nacl/
H A Dsignal.h5 int kill(pid_t pid, int signal);
/macosx-10.10.1/tcl-105/tcl_ext/tclx/tclx/tests/
H A Dsignal.test2 # signal.test
4 # Tests for the signal and kill commands.
15 # $Id: signal.test,v 1.3 2002/04/03 02:44:21 hobbs Exp $
24 echo " * The signal tests have not been ported to Win32"
40 Test signal-1.1 {signal tests} {
41 signal ignore SIGHUP
45 Test signal-1.2 {signal tests} {
48 signal erro
[all...]
/macosx-10.10.1/libunwind-35.3/testsuite/
H A Dexception_signal.cxx6 #include <signal.h>
14 ::signal(SIGBUS, SIG_DFL);
15 ::signal(SIGSEGV, SIG_DFL);
32 ::signal(SIGBUS, segfault);
33 ::signal(SIGSEGV, segfault);
/macosx-10.10.1/dtrace-147/test/tst/common/pid/
H A Dtst.ret1.c29 #include <signal.h>
61 (void) signal(SIGUSR1, handle);
H A Dtst.ret2.c29 #include <signal.h>
55 (void) signal(SIGUSR1, handle);
/macosx-10.10.1/top-100.1.2/
H A Dsig.c24 #include <signal.h>
33 signal(SIGINT, sigint_handler);
/macosx-10.10.1/dtrace-147/test/tst/common/proc/
H A Dtst.sigwait.d31 proc:::signal-send
37 proc:::signal-clear
/macosx-10.10.1/procmail-14/procmail/src/
H A Dmcommon.c22 if(SIG_IGN==signal(sig,(void(*)())fakehandler))
23 signal(sig,SIG_IGN);
25 { signal(sig,(void(*)())action);
/macosx-10.10.1/dtrace-147/DTTk/Bin/
H A Dkill.d14 * SIG destination signal ("9" for a kill -9)
15 * RESULT result of signal (-1 is for failure)
18 * for a solution using proc:::signal-send.
48 /* Record target PID and signal */
50 self->signal = arg1;
57 pid, execname, self->signal, self->target, (int)arg0);
61 self->signal = 0;
/macosx-10.10.1/dtrace-147/DTTk/Proc/
H A Dkill.d14 * SIG destination signal ("9" for a kill -9)
15 * RESULT result of signal (-1 is for failure)
18 * for a solution using proc:::signal-send.
48 /* Record target PID and signal */
50 self->signal = arg1;
57 pid, execname, self->signal, self->target, (int)arg0);
61 self->signal = 0;
/macosx-10.10.1/JavaScriptCore-7600.1.17/llvm/library/
H A DLLVMOverrides.cpp39 extern "C" int raise(int signal);
43 extern "C" int raise(int signal) argument
45 g_llvmTrapCallback("raise(%d) called.", signal);
/macosx-10.10.1/apr-32/apr/apr/threadproc/win32/
H A Dsignals.c24 #include <signal.h>
36 APR_DECLARE(apr_status_t) apr_proc_kill(apr_proc_t *proc, int signal)
39 if (TerminateProcess(proc->hproc, signal) == 0) {
56 return "unknown signal (not supported)";
/macosx-10.10.1/Heimdal-398.1.2/lib/kadm5/
H A Dipropd_common.c64 signal(SIGINT, sigterm);
65 signal(SIGTERM, sigterm);
67 signal(SIGXCPU, sigterm);
70 signal(SIGPIPE, SIG_IGN);
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dsiglist.c36 #include <signal.h>
91 "Suspended (signal)", /* SIGSTOP */
104 "User defined signal 1", /* SIGUSR1 */
105 "User defined signal 2" /* SIGUSR2 */
/macosx-10.10.1/emacs-93/emacs/msdos/
H A Dsigaction.c23 #include <signal.h>
33 void (*installed_sig)(int) = signal (_sig, SIG_IGN);
42 signal (_sig, installed_sig);
49 if (signal (_sig, _act->sa_handler) == SIG_ERR)
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-SystemConfiguration/Examples/CallbackDemo/
H A Dcallbacks.py14 import signal
48 signal.signal(signal.SIGINT, sigint)
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-SystemConfiguration/Examples/CallbackDemo/
H A Dcallbacks.py14 import signal
48 signal.signal(signal.SIGINT, sigint)
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-SystemConfiguration-2.5.1/Examples/CallbackDemo/
H A Dcallbacks.py14 import signal
48 signal.signal(signal.SIGINT, sigint)
/macosx-10.10.1/WTF-7600.1.24/wtf/threads/
H A DBinarySemaphore.cpp42 void BinarySemaphore::signal() function in class:WTF::BinarySemaphore
47 m_condition.signal();

Completed in 270 milliseconds

1234567891011>>