/usr/lib/python2.7/dist-packages/pykka/debug.py is in python-pykka 1.2.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | from __future__ import absolute_import
import logging
import sys
import threading
import traceback
logger = logging.getLogger('pykka')
__all__ = [
'log_thread_tracebacks',
]
def log_thread_tracebacks(*args, **kwargs):
"""Logs at ``CRITICAL`` level a traceback for each running thread.
This can be a convenient tool for debugging deadlocks.
The function accepts any arguments so that it can easily be used as e.g. a
signal handler, but it does not use the arguments for anything.
To use this function as a signal handler, setup logging with a
:attr:`logging.CRITICAL` threshold or lower and make your main thread
register this with the :mod:`signal` module::
import logging
import signal
import pykka.debug
logging.basicConfig(level=logging.DEBUG)
signal.signal(signal.SIGUSR1, pykka.debug.log_thread_tracebacks)
If your application deadlocks, send the `SIGUSR1` signal to the process::
kill -SIGUSR1 <pid of your process>
Signal handler caveats:
- The function *must* be registered as a signal handler by your main
thread. If not, :func:`signal.signal` will raise a :exc:`ValueError`.
- All signals in Python are handled by the main thread. Thus, the signal
will only be handled, and the tracebacks logged, if your main thread is
available to do some work. Making your main thread idle using
:func:`time.sleep` is OK. The signal will awaken your main thread.
Blocking your main thread on e.g. :func:`Queue.Queue.get` or
:meth:`pykka.Future.get` will break signal handling, and thus you won't
be able to signal your process to print the thread tracebacks.
The morale is: setup signals using your main thread, start your actors,
then let your main thread relax for the rest of your application's life
cycle.
For a complete example of how to use this, see
``examples/deadlock_debugging.py`` in Pykka's source code.
.. versionadded:: 1.1
"""
thread_names = dict((t.ident, t.name) for t in threading.enumerate())
for ident, frame in sys._current_frames().items():
name = thread_names.get(ident, '?')
stack = ''.join(traceback.format_stack(frame))
logger.critical(
'Current state of %s (ident: %s):\n%s', name, ident, stack)
|