index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
signalmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-1/+1
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
bpo-35081: Move Include/pyatomic.c to Include/internal/ (GH-10239)
Victor Stinner
2018-10-30
1
-0/+2
*
bpo-34412: Make signal.strsignal() work on HP-UX (GH-8786)
Michael Osipov
2018-08-23
1
-2/+20
*
bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146)
pkerling
2018-06-01
1
-12/+2
*
bpo-33441: Make the sigset_t converter available in other modules. (GH-6720)
Serhiy Storchaka
2018-05-08
1
-95/+25
*
bpo-33332: Add signal.valid_signals() (GH-6581)
Antoine Pitrou
2018-05-04
1
-5/+59
*
bpo-33329: Fix multiprocessing regression on newer glibcs (GH-6575)
Antoine Pitrou
2018-04-23
1
-6/+8
*
signal: add strsignal() (#6017)
Antoine Pietri
2018-03-12
1
-0/+61
*
bpo-30050: Allow disabling full buffer warnings in signal.set_wakeup_fd (#4792)
Nathaniel J. Smith
2017-12-18
1
-53/+51
*
bpo-30057: Fix potential missed signal in signal.signal(). (#4258)
Antoine Pitrou
2017-11-03
1
-1/+4
*
bpo-30807: signal.setitimer() now uses _PyTime API (GH-3865)
Victor Stinner
2017-10-13
1
-15/+25
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-22/+2
*
bpo-30808: Use _Py_atomic API for concurrency-sensitive signal state (#2417)
Antoine Pitrou
2017-07-17
1
-18/+20
*
bpo-30807: signal.setitimer() may disable the timer by mistake (#2493)
Antoine Pitrou
2017-06-30
1
-0/+4
*
bpo-30703: Improve signal delivery (#2415)
Antoine Pitrou
2017-06-28
1
-16/+14
*
bpo-16500: Allow registering at-fork handlers (#1715)
Antoine Pitrou
2017-05-27
1
-7/+1
*
bpo-30038: fix race condition in signal delivery + wakeup fd (#1082)
Nathaniel J. Smith
2017-05-16
1
-7/+26
*
bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)
Serhiy Storchaka
2017-04-16
1
-1/+1
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
1
-4/+5
*
Issue #21085: add configure check for siginfo_t.si_band
Zachary Ware
2016-10-01
1
-0/+4
*
Issue #28139: Merge indentation fixes from 3.5 into 3.6
Martin Panter
2016-09-17
1
-7/+7
|
\
|
*
Issue #28139: Fix messed up indentation
Martin Panter
2016-09-17
1
-7/+7
*
|
Use PyModule_AddIntMacro() in signal module
Christian Heimes
2016-09-08
1
-129/+86
*
|
Issue #23524: Finish removing _PyVerify_fd from sources
Steve Dower
2016-09-08
1
-6/+1
*
|
replace Py_(u)intptr_t with the c99 standard types
Benjamin Peterson
2016-09-06
1
-2/+2
|
/
*
Issue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka
2016-07-07
1
-26/+26
*
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-1/+1
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-1/+1
*
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-2/+1
*
Fixed compilation error in signalmodule.c (issue #20182).
Serhiy Storchaka
2015-05-16
1
-3/+3
*
Issue #20182: converted the signal module to use Argument Clinic
Tal Einat
2015-05-16
1
-215/+246
*
Issue #23836: Use _Py_write_noraise() to retry on EINTR in trip_signal() of
Victor Stinner
2015-04-01
1
-3/+4
*
PEP 475: on EINTR, retry the function even if the timeout is equals to zero
Victor Stinner
2015-03-30
1
-1/+1
*
Issue #23752: _Py_fstat() is now responsible to raise the Python exception
Victor Stinner
2015-03-30
1
-7/+3
*
Issue #22117: Replace usage of _PyTime_ROUND_UP with _PyTime_ROUND_CEILING
Victor Stinner
2015-03-30
1
-1/+2
*
Issue #22117: The signal modules uses the new _PyTime_t API
Victor Stinner
2015-03-27
1
-14/+13
*
Issue #23715: signal.sigwaitinfo() and signal.sigtimedwait() are now retried
Victor Stinner
2015-03-20
1
-26/+47
*
Issue #23524: Change back to using Windows errors for _Py_fstat instead of th...
Steve Dower
2015-03-08
1
-1/+1
*
Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Wind...
Steve Dower
2015-02-21
1
-4/+3
*
Issue #23450: Fix signal.set_wakeup_fd() on Windows
Victor Stinner
2015-02-12
1
-11/+14
*
Issue #22869: Split pythonrun into two modules
Nick Coghlan
2014-11-20
1
-1/+1
*
Issue #22042: signal.set_wakeup_fd(fd) now raises an exception if the file
Victor Stinner
2014-08-27
1
-1/+19
*
Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets.
Victor Stinner
2014-07-29
1
-18/+165
*
Backout 42ced0d023cd: oops, i didn't want to push this changeset :-/
Victor Stinner
2014-07-24
1
-136/+19
*
tets
Victor Stinner
2014-07-24
1
-19/+136
*
Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of a
Victor Stinner
2014-07-21
1
-3/+11
*
merge along w/ fix for issue #2107 (commit c9239171e429)
Brett Cannon
2014-04-04
1
-3/+3
|
\
|
*
fix #21076: turn signal module constants into enums
Giampaolo Rodola'
2014-04-04
1
-2/+2
|
/
*
Issue #20320: select.select() and select.kqueue.control() now round the timeout
Victor Stinner
2014-02-16
1
-1/+2
[next]