Searched refs:signal (Results 1 - 10 of 10) sorted by relevance
/pkg/src/tests/cli/ |
H A D | t_pkg_nasty.py | 38 import signal namespace 377 sigs = (signal.SIGINT, signal.SIGTERM) 379 sigs = (signal.SIGHUP, signal.SIGINT, signal.SIGTERM) 396 # Wait for hang file before sending signal.
|
/pkg/src/tests/api/ |
H A D | t_async_rpc.py | 35 import signal namespace 242 os.kill(server_proc.pid, signal.SIGKILL)
|
H A D | t_config.py | 38 import signal namespace
|
/pkg/src/zoneproxy/zoneproxy-client/ |
H A D | zoneproxy-client.c | 32 #include <signal.h> 443 (void) signal(SIGPIPE, SIG_IGN); 546 /* create signal handling thread */ 555 /* Wait for signal to quit */
|
/pkg/src/modules/client/transport/ |
H A D | engine.py | 40 import signal namespace 41 if hasattr(signal, "SIGPIPE"): 42 signal.signal(signal.SIGPIPE, signal.SIG_IGN)
|
/pkg/src/modules/ |
H A D | depotcontroller.py | 28 import signal namespace 507 os.kill(self.__depot_handle.pid, signal.SIGUSR1) 531 signal.SIGKILL)
|
H A D | misc.py | 45 import signal namespace 2785 """convert signal number to name(s)""" 2787 for name in dir(signal): 2789 sigdict[getattr(signal, name)].append(name) 2792 ["Unnamed signal: {0:d}".format(signal_number)]))
|
/pkg/src/tests/ |
H A D | pkg5unittest.py | 48 import signal namespace 117 """An exception used to signal that all testing should cease. 123 """An exception used to signal that a test was skipped. 1854 signal.signal(signal.SIGTERM, signal.SIG_IGN) 3615 oldhdlr = signal.signal(signal [all...] |
/pkg/src/zoneproxy/zoneproxyd/ |
H A D | zoneproxyd.c | 75 #include <signal.h> 2000 (void) signal(SIGPIPE, SIG_IGN); 2118 /* start signal handling thread */ 2135 /* Wait for signal handling thread to notify us to quit */
|
/pkg/src/ |
H A D | client.py | 5807 import signal namespace 5810 signal.signal(signal.SIGHUP, handle_sighupterm) 5811 signal.signal(signal.SIGTERM, handle_sighupterm)
|
Completed in 64 milliseconds