summaryrefslogtreecommitdiffstats
path: root/Modules/faulthandler.c
Commit message (Expand)AuthorAgeFilesLines
* faulthandler: dump all threads by defaultVictor Stinner2011-05-071-6/+6
* faulthandler: save/restore errno in the two signal handlersVictor Stinner2011-05-071-0/+4
* faulthandler: don't use sigprocmask()Victor Stinner2011-04-191-5/+1
* Improve faulthandler.enable(all_threads=True)Victor Stinner2011-04-081-22/+32
* faulthandler: dump_tracebacks_later() displays also the timeoutVictor Stinner2011-04-081-3/+49
* faulthandler: fix variable name, timeout_ms => timeout_usVictor Stinner2011-04-081-6/+6
* faulthandler: one more time, fix usage of locks in the watchdog threadVictor Stinner2011-04-081-29/+28
* faulthandler: fix unregister() if it is called before register()Victor Stinner2011-04-081-0/+3
* faulthandler: fix compilating without threadsVictor Stinner2011-04-071-0/+8
* faulthandler: we don't use (or need) SA_SIGINFO flag of sigaction()Victor Stinner2011-04-071-7/+2
* faulthandler: check PyThreadState_Get() result in dump_tracebacks_later()Victor Stinner2011-04-071-12/+21
* Issue #11753: faulthandler thread uses pthread_sigmask()Victor Stinner2011-04-041-0/+11
* Issue #11393: signal of user signal displays tracebacks even if tstate==NULLVictor Stinner2011-04-011-21/+37
* Issue #11393: Fix faulthandler.disable() and add a testVictor Stinner2011-04-011-4/+4
* Issue #11393: The fault handler handles also SIGABRTVictor Stinner2011-04-011-8/+25
* Issue #11393: fault handler uses raise(signum) for SIGILL on WindowsVictor Stinner2011-04-011-15/+12
* Issue #11393: fix usage of locks in faulthandlerVictor Stinner2011-04-011-3/+4
* Issue #11393: New try to fix faulthandler_thread()Victor Stinner2011-04-011-6/+6
* Issue #11393: Fix faulthandler_thread(): release cancel lock before join lockVictor Stinner2011-04-011-1/+1
* Issue #11393: limit stack overflow test to 100 MBVictor Stinner2011-03-311-5/+32
* Issue #11393: Fix the documentation (cancel_dump_traceback_later)Victor Stinner2011-03-311-6/+6
* Issue #11393: Add the new faulthandler moduleVictor Stinner2011-03-301-0/+971