diff options
author | Victor Stinner <vstinner@python.org> | 2020-11-17 21:55:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 21:55:30 (GMT) |
commit | 29aa624047f893b3b3194f00252b2156bbbf4f9b (patch) | |
tree | c78d32249babc7ffa23a71b2164c8ddc40e0b3ac /Python/pylifecycle.c | |
parent | 282282a1c9347adbd07a2d59c2b861df7580cebb (diff) | |
download | cpython-29aa624047f893b3b3194f00252b2156bbbf4f9b.zip cpython-29aa624047f893b3b3194f00252b2156bbbf4f9b.tar.gz cpython-29aa624047f893b3b3194f00252b2156bbbf4f9b.tar.bz2 |
bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353)
Diffstat (limited to 'Python/pylifecycle.c')
-rw-r--r-- | Python/pylifecycle.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/Python/pylifecycle.c b/Python/pylifecycle.c index 77a18e1..82ce4f1 100644 --- a/Python/pylifecycle.c +++ b/Python/pylifecycle.c @@ -2727,29 +2727,6 @@ Py_Exit(int sts) } -/* Restore signals that the interpreter has called SIG_IGN on to SIG_DFL. - * - * All of the code in this function must only use async-signal-safe functions, - * listed at `man 7 signal` or - * http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_04.html. - * - * If this function is updated, update also _posix_spawn() of subprocess.py. - */ -void -_Py_RestoreSignals(void) -{ -#ifdef SIGPIPE - PyOS_setsig(SIGPIPE, SIG_DFL); -#endif -#ifdef SIGXFZ - PyOS_setsig(SIGXFZ, SIG_DFL); -#endif -#ifdef SIGXFSZ - PyOS_setsig(SIGXFSZ, SIG_DFL); -#endif -} - - /* * The file descriptor fd is considered ``interactive'' if either * a) isatty(fd) is TRUE, or |