summaryrefslogtreecommitdiffstats
path: root/Modules/faulthandler.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #13874: read_null() of faulthandler uses volatile to avoid optimisationVictor Stinner2012-01-291-1/+4
* Fix _PyFaulthandler_Fini() so it can be called before _PyFaulthandler_Init()Victor Stinner2012-01-101-2/+2
* Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-3/+3
* Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-3/+6
* Fix compilation error under WindowsAntoine Pitrou2011-10-041-1/+2
* Use the faulthandler module's infrastructure to write a GIL-lessAntoine Pitrou2011-10-041-0/+183
* Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-281-1/+1
* Issue #12929: faulthandler now uses char* for arithmetic on pointersVictor Stinner2011-09-071-1/+1
* Issue #12550: Add chain optional argument to faulthandler.register()Victor Stinner2011-07-131-32/+60
* faulthandler: add missing include, pthread.h, for FreeBSD 6Victor Stinner2011-06-291-0/+4
* Remove useless assignmentsVictor Stinner2011-05-261-5/+4
* Close #12153: faulthandler, mark stack_overflow() as staticVictor Stinner2011-05-231-1/+1
* Issue #12058: Minor edits to comments in faulthandlerVictor Stinner2011-05-111-18/+18
* faulthandler: improve_sigabrt() on Visual StudioVictor Stinner2011-05-091-7/+5
* faulthandler: make quiet a gcc 4.6 warning (z was unused)Victor Stinner2011-05-091-2/+5
* 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