Python signal.SIGUSR2 Examples
The following are 30
code examples of signal.SIGUSR2().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
signal
, or try the search function
.
Example #1
Source File: test_threadsignals.py From BinderFilter with MIT License | 6 votes |
def test_signals(self): signalled_all.acquire() self.spawnSignallingThread() signalled_all.acquire() # the signals that we asked the kernel to send # will come back, but we don't know when. # (it might even be after the thread exits # and might be out of order.) If we haven't seen # the signals yet, send yet another signal and # wait for it return. if signal_blackboard[signal.SIGUSR1]['tripped'] == 0 \ or signal_blackboard[signal.SIGUSR2]['tripped'] == 0: signal.alarm(1) signal.pause() signal.alarm(0) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped_by'], thread.get_ident()) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) signalled_all.release()
Example #2
Source File: test_threadsignals.py From medicare-demo with Apache License 2.0 | 6 votes |
def test_signals(self): signalled_all.acquire() self.spawnSignallingThread() signalled_all.acquire() # the signals that we asked the kernel to send # will come back, but we don't know when. # (it might even be after the thread exits # and might be out of order.) If we haven't seen # the signals yet, send yet another signal and # wait for it return. if signal_blackboard[signal.SIGUSR1]['tripped'] == 0 \ or signal_blackboard[signal.SIGUSR2]['tripped'] == 0: signal.alarm(1) signal.pause() signal.alarm(0) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped_by'], thread.get_ident()) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) signalled_all.release()
Example #3
Source File: test_threadsignals.py From gcblue with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_signals(self): signalled_all.acquire() self.spawnSignallingThread() signalled_all.acquire() # the signals that we asked the kernel to send # will come back, but we don't know when. # (it might even be after the thread exits # and might be out of order.) If we haven't seen # the signals yet, send yet another signal and # wait for it return. if signal_blackboard[signal.SIGUSR1]['tripped'] == 0 \ or signal_blackboard[signal.SIGUSR2]['tripped'] == 0: signal.alarm(1) signal.pause() signal.alarm(0) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped_by'], thread.get_ident()) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) signalled_all.release()
Example #4
Source File: parse_replication_stream_internal_test.py From mysql_streamer with Apache License 2.0 | 6 votes |
def test_register_signal_handler( self, patch_config, patch_db_connections, patch_restarter, patch_signal, patch_running, patch_producer, patch_exit, ): patch_running.return_value = False replication_stream = self._init_and_run_batch() # ZKLock also calls patch_signal, so we have to work around it assert [ mock.call(signal.SIGINT, replication_stream._handle_shutdown_signal), mock.call(signal.SIGTERM, replication_stream._handle_shutdown_signal), mock.call(signal.SIGUSR2, replication_stream._handle_profiler_signal), ] in patch_signal.call_args_list
Example #5
Source File: RtkController.py From rtkbase with GNU Affero General Public License v3.0 | 6 votes |
def shutdown(self): if self.launched: self.semaphore.acquire() self.child.kill(signal.SIGUSR2) # wait for rtkrcv to shutdown try: self.child.wait() except pexpect.ExceptionPexpect: print("Already dead!!") if self.child.isalive(): r = -1 else: r = 1 self.semaphore.release() self.launched = False return r # already shut down return 2
Example #6
Source File: test_threadsignals.py From oss-ftp with MIT License | 6 votes |
def test_signals(self): signalled_all.acquire() self.spawnSignallingThread() signalled_all.acquire() # the signals that we asked the kernel to send # will come back, but we don't know when. # (it might even be after the thread exits # and might be out of order.) If we haven't seen # the signals yet, send yet another signal and # wait for it return. if signal_blackboard[signal.SIGUSR1]['tripped'] == 0 \ or signal_blackboard[signal.SIGUSR2]['tripped'] == 0: signal.alarm(1) signal.pause() signal.alarm(0) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped_by'], thread.get_ident()) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) signalled_all.release()
Example #7
Source File: test_threadsignals.py From CTFCrackTools-V2 with GNU General Public License v3.0 | 6 votes |
def test_signals(self): signalled_all.acquire() self.spawnSignallingThread() signalled_all.acquire() # the signals that we asked the kernel to send # will come back, but we don't know when. # (it might even be after the thread exits # and might be out of order.) If we haven't seen # the signals yet, send yet another signal and # wait for it return. if signal_blackboard[signal.SIGUSR1]['tripped'] == 0 \ or signal_blackboard[signal.SIGUSR2]['tripped'] == 0: signal.alarm(1) signal.pause() signal.alarm(0) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped_by'], thread.get_ident()) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) signalled_all.release()
Example #8
Source File: test_cmd_manager.py From qdb with Apache License 2.0 | 6 votes |
def MockTracer(self): """ Construct a mock tracer. """ tracer = MagicMock() tracer.address = self.tracer_host, self.tracer_port tracer.pause_signal = signal.SIGUSR2 tracer.retry_attempts = 1 tracer.local = 0, 0 tracer.uuid = 'mock' tracer.watchlist = {} tracer.curframe = sys._getframe() tracer.stack = [(sys._getframe(), 1)] * 3 tracer.skip_fn = lambda _: False tracer.cmd_manager = self.cmd_manager return tracer
Example #9
Source File: log_test.py From pscheduler with Apache License 2.0 | 6 votes |
def test_log(self): """Logging tests""" # Not much to test here but exercise the code nonetheless # for regression/coverage. log = Log(verbose=False, prefix='test') log.debug("Invisible debug.") try: raise ValueError("Test exception") except ValueError: log.exception("Test exception with message") for num in range(1, 5): log.debug("Debug") log.info("Info") log.warning("Warning") log.error("Error") log.critical("Crtitical") os.kill(os.getpid(), signal.SIGUSR1 if (num % 2) != 0 else signal.SIGUSR2)
Example #10
Source File: app.py From kibitzr with MIT License | 6 votes |
def __init__(self): self.signals = { 'reload_conf_pending': False, 'interrupted': False, 'open_backdoor': False, 'orig': { signal.SIGINT: None, signal.SIGTERM: None, } } try: self.signals['orig'].update({ signal.SIGUSR1: None, signal.SIGUSR2: None, }) except AttributeError: # Unavailable on Windows pass
Example #11
Source File: test_threadsignals.py From ironpython2 with Apache License 2.0 | 6 votes |
def test_signals(self): signalled_all.acquire() self.spawnSignallingThread() signalled_all.acquire() # the signals that we asked the kernel to send # will come back, but we don't know when. # (it might even be after the thread exits # and might be out of order.) If we haven't seen # the signals yet, send yet another signal and # wait for it return. if signal_blackboard[signal.SIGUSR1]['tripped'] == 0 \ or signal_blackboard[signal.SIGUSR2]['tripped'] == 0: try: signal.alarm(1) signal.pause() finally: signal.alarm(0) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped_by'], thread.get_ident()) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) signalled_all.release()
Example #12
Source File: test_threadsignals.py From CTFCrackTools with GNU General Public License v3.0 | 6 votes |
def test_signals(self): signalled_all.acquire() self.spawnSignallingThread() signalled_all.acquire() # the signals that we asked the kernel to send # will come back, but we don't know when. # (it might even be after the thread exits # and might be out of order.) If we haven't seen # the signals yet, send yet another signal and # wait for it return. if signal_blackboard[signal.SIGUSR1]['tripped'] == 0 \ or signal_blackboard[signal.SIGUSR2]['tripped'] == 0: signal.alarm(1) signal.pause() signal.alarm(0) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR1]['tripped_by'], thread.get_ident()) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped'], 1) self.assertEqual( signal_blackboard[signal.SIGUSR2]['tripped_by'], thread.get_ident()) signalled_all.release()
Example #13
Source File: RtkController.py From ReachView with GNU General Public License v3.0 | 6 votes |
def shutdown(self): if self.launched: self.semaphore.acquire() self.child.kill(signal.SIGUSR2) # wait for rtkrcv to shutdown try: self.child.wait() except pexpect.ExceptionPexpect: print("Already dead!!") if self.child.isalive(): r = -1 else: r = 1 self.semaphore.release() self.launched = False return r # already shut down return 2
Example #14
Source File: __init__.py From canvas with BSD 3-Clause "New" or "Revised" License | 5 votes |
def integrate_faulthandler(): import faulthandler, signal fout = file('/var/canvas/website/run/faulthandler.log', 'a') faulthandler.register(signal.SIGUSR2, file=fout)
Example #15
Source File: test_threadsignals.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
def registerSignals(for_usr1, for_usr2, for_alrm): usr1 = signal.signal(signal.SIGUSR1, for_usr1) usr2 = signal.signal(signal.SIGUSR2, for_usr2) alrm = signal.signal(signal.SIGALRM, for_alrm) return usr1, usr2, alrm # The signal handler. Just note that the signal occurred and # from who.
Example #16
Source File: b2bua_radius.py From pulsar with BSD 3-Clause "New" or "Revised" License | 5 votes |
def __init__(self, global_config): self.global_config = global_config self.ccmap = [] self.el = Timeout(self.GClector, 60, -1) Signal(SIGHUP, self.discAll, SIGHUP) Signal(SIGUSR2, self.toggleDebug, SIGUSR2) Signal(SIGPROF, self.safeRestart, SIGPROF) #gc.disable() #gc.set_debug(gc.DEBUG_STATS) #gc.set_threshold(0) #print gc.collect()
Example #17
Source File: test_signal.py From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 | 5 votes |
def test_pending(self): self.check_wakeup("""def test(): signum1 = signal.SIGUSR1 signum2 = signal.SIGUSR2 signal.signal(signum1, handler) signal.signal(signum2, handler) signal.pthread_sigmask(signal.SIG_BLOCK, (signum1, signum2)) _testcapi.raise_signal(signum1) _testcapi.raise_signal(signum2) # Unblocking the 2 signals calls the C signal handler twice signal.pthread_sigmask(signal.SIG_UNBLOCK, (signum1, signum2)) """, signal.SIGUSR1, signal.SIGUSR2, ordered=False)
Example #18
Source File: tools.py From sisyphus with Mozilla Public License 2.0 | 5 votes |
def maybe_install_signal_handers(): import signal install_signal_handler_if_default(signal.SIGUSR1) install_signal_handler_if_default(signal.SIGUSR2)
Example #19
Source File: test_threadsignals.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
def test_main(): global signal_blackboard signal_blackboard = { signal.SIGUSR1 : {'tripped': 0, 'tripped_by': 0 }, signal.SIGUSR2 : {'tripped': 0, 'tripped_by': 0 }, signal.SIGALRM : {'tripped': 0, 'tripped_by': 0 } } oldsigs = registerSignals(handle_signals, handle_signals, handle_signals) try: run_unittest(ThreadSignals) finally: registerSignals(*oldsigs)
Example #20
Source File: test_signal.py From android_universal with MIT License | 5 votes |
def test_pending(self): self.check_wakeup("""def test(): signum1 = signal.SIGUSR1 signum2 = signal.SIGUSR2 signal.signal(signum1, handler) signal.signal(signum2, handler) signal.pthread_sigmask(signal.SIG_BLOCK, (signum1, signum2)) _testcapi.raise_signal(signum1) _testcapi.raise_signal(signum2) # Unblocking the 2 signals calls the C signal handler twice signal.pthread_sigmask(signal.SIG_UNBLOCK, (signum1, signum2)) """, signal.SIGUSR1, signal.SIGUSR2, ordered=False)
Example #21
Source File: test_threadsignals.py From CTFCrackTools with GNU General Public License v3.0 | 5 votes |
def registerSignals(for_usr1, for_usr2, for_alrm): usr1 = signal.signal(signal.SIGUSR1, for_usr1) usr2 = signal.signal(signal.SIGUSR2, for_usr2) alrm = signal.signal(signal.SIGALRM, for_alrm) return usr1, usr2, alrm # The signal handler. Just note that the signal occurred and # from who.
Example #22
Source File: test_threadsignals.py From gcblue with BSD 3-Clause "New" or "Revised" License | 5 votes |
def send_signals(): os.kill(process_pid, signal.SIGUSR1) os.kill(process_pid, signal.SIGUSR2) signalled_all.release()
Example #23
Source File: test_threadsignals.py From medicare-demo with Apache License 2.0 | 5 votes |
def send_signals(): os.kill(process_pid, signal.SIGUSR1) os.kill(process_pid, signal.SIGUSR2) signalled_all.release()
Example #24
Source File: cluster.py From opsbro with MIT License | 5 votes |
def set_exit_handler(self): func = self.manage_signal if os.name == "nt": try: import win32api win32api.SetConsoleCtrlHandler(func, True) except ImportError: version = ".".join(map(str, sys.version_info[:2])) raise Exception("pywin32 not installed for Python " + version) else: for sig in (signal.SIGTERM, signal.SIGINT, signal.SIGUSR1, signal.SIGUSR2): signal.signal(sig, func)
Example #25
Source File: cluster.py From opsbro with MIT License | 5 votes |
def manage_signal(self, sig, frame): logger.info("I'm process %d and I received signal %s" % (os.getpid(), str(sig))) if sig == signal.SIGUSR1: # if USR1, ask a memory dump logger.info('MANAGE USR1') elif sig == signal.SIGUSR2: # if USR2, ask objects dump logger.info('MANAGE USR2') else: # Ok, really ask us to die :) stopper.do_stop('Stop from signal %s received' % sig)
Example #26
Source File: __init__.py From hase with BSD 2-Clause "Simplified" License | 5 votes |
def __init__(self, pid: int, record_paths: "RecordPaths"): super().__init__() self._coredump_handler = Handler( str(record_paths.coredump), str(record_paths.fifo), str(record_paths.manifest), log_path=str(record_paths.log_path.joinpath("coredump.log")), ) self._increase_buffer = IncreasePerfBuffer(100 * 1024) self._perf = Perf(pid) self._signal_handler = SignalHandler(SIGUSR2, self.received_coredump) # work around missing nonlocal keyword in python2 with a list self._got_coredump = [False] self._record_paths = record_paths
Example #27
Source File: signal_trace_test.py From luci-py with Apache License 2.0 | 5 votes |
def test_SIGUSR2(self): cmd = ('import signal_trace,sys,time; signal_trace.register(); ' 'sys.stdout.write("1"); sys.stdout.flush(); time.sleep(60)') out, err = self._run(cmd, signal.SIGUSR2, 'exit()\n') self.assertEqual('>>> ', out) self.assertTrue( err .startswith('Signal received : entering python shell.\nTraceback:\n'), repr(err))
Example #28
Source File: signal_trace_test.py From luci-py with Apache License 2.0 | 5 votes |
def _run(self, cmd, sig, stdin): p = subprocess.Popen([sys.executable, '-u', '-c', cmd], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=THIS_DIR) p.stdout.read(1) os.kill(p.pid, sig) # Wait for some output before calling communicate(), otherwise there's a # race condition with SIGUSR2. e = p.stderr.read(1) out, err = p.communicate(input=stdin) return out, e + err
Example #29
Source File: agent.py From stackimpact-python with BSD 3-Clause "New" or "Revised" License | 5 votes |
def run_in_main_thread(self, func): if self.main_thread_func: return False self.main_thread_func = func os.kill(os.getpid(), signal.SIGUSR2) return True
Example #30
Source File: Str2StrController.py From ReachView with GNU General Public License v3.0 | 5 votes |
def stop(self): # terminate the stream if self.started: self.child.kill(signal.SIGUSR2) try: self.child.wait() except pexpect.ExceptionPexpect: print("Str2str already down") self.started = False return 1 # str2str already stopped return 2