aboutsummaryrefslogtreecommitdiff
path: root/Modules/signalmodule.c
AgeCommit message (Expand)Author
2018-03-12signal: add strsignal() (#6017)Antoine Pietri
2017-12-17bpo-30050: Allow disabling full buffer warnings in signal.set_wakeup_fd (#4792)Nathaniel J. Smith
2017-11-03bpo-30057: Fix potential missed signal in signal.signal(). (#4258)Antoine Pitrou
2017-10-13bpo-30807: signal.setitimer() now uses _PyTime API (GH-3865)Victor Stinner
2017-09-07bpo-31370: Remove support for threads-less builds (#3385)Antoine Pitrou
2017-07-17bpo-30808: Use _Py_atomic API for concurrency-sensitive signal state (#2417)Antoine Pitrou
2017-06-30bpo-30807: signal.setitimer() may disable the timer by mistake (#2493)Antoine Pitrou
2017-06-28bpo-30703: Improve signal delivery (#2415)Antoine Pitrou
2017-05-27bpo-16500: Allow registering at-fork handlers (#1715)Antoine Pitrou
2017-05-16bpo-30038: fix race condition in signal delivery + wakeup fd (#1082)Nathaniel J. Smith
2017-04-16bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka
2017-03-23bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka
2016-10-01Issue #21085: add configure check for siginfo_t.si_bandZachary Ware
2016-09-17Issue #28139: Merge indentation fixes from 3.5 into 3.6Martin Panter
2016-09-17Issue #28139: Fix messed up indentationMartin Panter
2016-09-09Use PyModule_AddIntMacro() in signal moduleChristian Heimes
2016-09-08Issue #23524: Finish removing _PyVerify_fd from sourcesSteve Dower
2016-09-06replace Py_(u)intptr_t with the c99 standard typesBenjamin Peterson
2016-07-07Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka
2016-04-10Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka
2016-04-06Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka
2015-12-24Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka
2015-05-16Fixed compilation error in signalmodule.c (issue #20182).Serhiy Storchaka
2015-05-16Issue #20182: converted the signal module to use Argument ClinicTal Einat
2015-04-01Issue #23836: Use _Py_write_noraise() to retry on EINTR in trip_signal() ofVictor Stinner
2015-03-30PEP 475: on EINTR, retry the function even if the timeout is equals to zeroVictor Stinner
2015-03-30Issue #23752: _Py_fstat() is now responsible to raise the Python exceptionVictor Stinner
2015-03-30Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILINGVictor Stinner
2015-03-27Issue #22117: The signal modules uses the new _PyTime_t APIVictor Stinner
2015-03-20Issue #23715: signal.sigwaitinfo() and signal.sigtimedwait() are now retriedVictor Stinner
2015-03-07Issue #23524: Change back to using Windows errors for _Py_fstat instead of th...Steve Dower
2015-02-21Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...Steve Dower
2015-02-12Issue #23450: Fix signal.set_wakeup_fd() on WindowsVictor Stinner
2014-11-20Issue #22869: Split pythonrun into two modulesNick Coghlan
2014-08-27Issue #22042: signal.set_wakeup_fd(fd) now raises an exception if the fileVictor Stinner
2014-07-29Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets.Victor Stinner
2014-07-24Backout 42ced0d023cd: oops, i didn't want to push this changeset :-/Victor Stinner
2014-07-24tetsVictor Stinner
2014-07-21Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of aVictor Stinner
2014-04-04merge along w/ fix for issue #2107 (commit c9239171e429)Brett Cannon
2014-04-04fix #21076: turn signal module constants into enumsGiampaolo Rodola'
2014-02-17Issue #20320: select.select() and select.kqueue.control() now round the timeoutVictor Stinner
2014-02-09Issue #20437: Fixed 22 potential bugs when deleting objects references.Serhiy Storchaka
2014-02-09Issue #20437: Fixed 21 potential bugs when deleting objects references.Serhiy Storchaka
2013-08-18Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok.Christian Heimes
2013-08-17Issue #16105: When a signal handler fails to write to the file descriptor reg...Antoine Pitrou
2013-07-22Issue #18520: Add a new PyStructSequence_InitType2() function, same thanVictor Stinner
2013-05-04Issue #14173: Avoid crashing when reading a signal handler during interpreter...Antoine Pitrou
2013-05-04Issue #14173: Avoid crashing when reading a signal handler during interpreter...Antoine Pitrou
2013-04-17Merge.Richard Oudkerk