summaryrefslogtreecommitdiff
path: root/Modules/signalmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-714...Antoine Pitrou2018-06-031-12/+2
* [2.7] bpo-30057: Fix potential missed signal in signal.signal(). (GH-4258) (#...Antoine Pitrou2017-11-031-1/+4
* [2.7] bpo-30807: signal.setitimer() may disable the timer by mistake (GH-2493...Antoine Pitrou2017-06-301-0/+4
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-13/+13
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* Issue #14173: Avoid crashing when reading a signal handler during interpreter...Antoine Pitrou2013-05-041-3/+11
* check windows fd validity (closes #16992)Benjamin Peterson2013-01-181-1/+1
* Fixes issue #9535: Fix pending signals that have been received but not yetGregory P. Smith2012-11-101-0/+16
* Issue #13817: After fork(), reinit the ad-hoc TLS implementation earlier to fixCharles-François Natali2012-02-021-1/+3
* Issue #13156: revert changeset f6feed6ec3f9, which was only relevant for nativeCharles-François Natali2011-10-121-1/+0
* Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*Antoine Pitrou2011-04-271-0/+1
* (Merge 3.1) Issue #11768: The signal handler of the signal module only callsVictor Stinner2011-04-181-10/+16
* Merged revisions 86214 via svnmerge fromAntoine Pitrou2010-11-051-14/+20
* Merged revisions 85140 via svnmerge fromBrian Curtin2010-10-011-0/+5
* Merged revisions 84556 via svnmerge fromBrian Curtin2010-09-061-11/+10
* Merged revisions 83763 via svnmerge fromBrian Curtin2010-08-061-0/+15
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-420/+420
* Skip signal handler re-installation if it is not necessary. Issue 8354.Jean-Paul Calderone2010-05-081-0/+5
* Implement #1220212. Add os.kill support for Windows.Brian Curtin2010-04-021-0/+13
* #7706: add include guards where they're missing; required for Windows CEAndrew M. Kuchling2010-02-221-1/+6
* comment typo fixGregory P. Smith2009-08-121-1/+1
* Fixed a couple more C99 comments and one occurence of inline.Christian Heimes2008-10-021-1/+1
* Fix:Neal Norwitz2008-08-241-1/+2
* #1683 prevent forking from interfering in threading storageBenjamin Peterson2008-06-131-0/+1
* Conditionalize sys/time.h inclusion.Martin v. Löwis2008-03-241-0/+2
* Patch #2240: Implement signal.setitimer and signal.getitimer.Martin v. Löwis2008-03-241-3/+149
* Issue 1089358. Adds the siginterrupt() function, that is just aFacundo Batista2008-02-231-0/+33
* Patch #1583 by Adam Olsen.Guido van Rossum2007-12-191-1/+52
* Patch #1643738 by Ulisses Furquim -- make the is_tripped variableGuido van Rossum2007-12-101-5/+26
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* - Changes donated by Elemental Security to make it work on AIX 5.3Guido van Rossum2005-09-141-0/+1
* Patch #975056 - fixes for restartable signals on *BSD. In addition,Anthony Baxter2004-10-131-6/+0
* silly typoMichael W. Hudson2004-06-171-1/+1
* Patch [ 776725 ] add SIGRTMIN, SIGRTMAX to signalmodule.cAnthony Baxter2003-07-311-0/+10
* Take out my (long since disabled) POSIX signal mask handling code.Michael W. Hudson2003-03-131-171/+0
* - PyEval_GetFrame() is now declared to return a PyFrameObject *Guido van Rossum2003-02-191-1/+1
* Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototypeMark Hammond2002-08-021-1/+1
* Patch #569753: Remove support for WIN16.Martin v. Löwis2002-06-301-1/+1
* SF # 533070 Silence AIX C Compiler WarningsNeal Norwitz2002-06-131-1/+1
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-19/+18
* This is patchMichael W. Hudson2002-05-271-0/+171
* Remove METH_OLDARGS:Neal Norwitz2002-03-311-7/+7
* Add type cast.Neil Schemenauer2002-03-281-1/+2
* Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS.Neal Norwitz2002-03-251-5/+2
* OS/2 EMX port changes (Modules part of patch #450267):Andrew MacIntyre2002-03-031-1/+1
* Export SIGINFO. Fixes #502077.Martin v. Löwis2002-01-121-0/+5
* Include <unistd.h> in Python.h. Fixes #500924.Martin v. Löwis2002-01-121-4/+0
* SF patch [#466877] SIGBREAK is missing from signal module.Tim Peters2001-10-011-0/+5