Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
e905c844
Kaydet (Commit)
e905c844
authored
Haz 01, 2018
tarafından
pkerling
Kaydeden (comit)
Antoine Pitrou
Haz 01, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-30654: Do not reset SIGINT handler to SIG_DFL in finisignal (GH-7146)
üst
23cee80c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
12 deletions
+4
-12
2018-05-28-12-28-53.bpo-30654.9fDJye.rst
...ore and Builtins/2018-05-28-12-28-53.bpo-30654.9fDJye.rst
+2
-0
signalmodule.c
Modules/signalmodule.c
+2
-12
No files found.
Misc/NEWS.d/next/Core and Builtins/2018-05-28-12-28-53.bpo-30654.9fDJye.rst
0 → 100644
Dosyayı görüntüle @
e905c844
Fixed reset of the SIGINT handler to SIG_DFL on interpreter shutdown even
when there was a custom handler set previously. Patch by Philipp Kerling.
Modules/signalmodule.c
Dosyayı görüntüle @
e905c844
...
@@ -126,13 +126,6 @@ static PyObject *DefaultHandler;
...
@@ -126,13 +126,6 @@ static PyObject *DefaultHandler;
static
PyObject
*
IgnoreHandler
;
static
PyObject
*
IgnoreHandler
;
static
PyObject
*
IntHandler
;
static
PyObject
*
IntHandler
;
/* On Solaris 8, gcc will produce a warning that the function
declaration is not a prototype. This is caused by the definition of
SIG_DFL as (void (*)())0; the correct declaration would have been
(void (*)(int))0. */
static
PyOS_sighandler_t
old_siginthandler
=
SIG_DFL
;
#ifdef MS_WINDOWS
#ifdef MS_WINDOWS
static
HANDLE
sigint_event
=
NULL
;
static
HANDLE
sigint_event
=
NULL
;
#endif
#endif
...
@@ -1336,7 +1329,7 @@ PyInit__signal(void)
...
@@ -1336,7 +1329,7 @@ PyInit__signal(void)
/* Install default int handler */
/* Install default int handler */
Py_INCREF
(
IntHandler
);
Py_INCREF
(
IntHandler
);
Py_SETREF
(
Handlers
[
SIGINT
].
func
,
IntHandler
);
Py_SETREF
(
Handlers
[
SIGINT
].
func
,
IntHandler
);
old_siginthandler
=
PyOS_setsig
(
SIGINT
,
signal_handler
);
PyOS_setsig
(
SIGINT
,
signal_handler
);
}
}
#ifdef SIGHUP
#ifdef SIGHUP
...
@@ -1542,14 +1535,11 @@ finisignal(void)
...
@@ -1542,14 +1535,11 @@ finisignal(void)
int
i
;
int
i
;
PyObject
*
func
;
PyObject
*
func
;
PyOS_setsig
(
SIGINT
,
old_siginthandler
);
old_siginthandler
=
SIG_DFL
;
for
(
i
=
1
;
i
<
NSIG
;
i
++
)
{
for
(
i
=
1
;
i
<
NSIG
;
i
++
)
{
func
=
Handlers
[
i
].
func
;
func
=
Handlers
[
i
].
func
;
_Py_atomic_store_relaxed
(
&
Handlers
[
i
].
tripped
,
0
);
_Py_atomic_store_relaxed
(
&
Handlers
[
i
].
tripped
,
0
);
Handlers
[
i
].
func
=
NULL
;
Handlers
[
i
].
func
=
NULL
;
if
(
i
!=
SIGINT
&&
func
!=
NULL
&&
func
!=
Py_None
&&
if
(
func
!=
NULL
&&
func
!=
Py_None
&&
func
!=
DefaultHandler
&&
func
!=
IgnoreHandler
)
func
!=
DefaultHandler
&&
func
!=
IgnoreHandler
)
PyOS_setsig
(
i
,
SIG_DFL
);
PyOS_setsig
(
i
,
SIG_DFL
);
Py_XDECREF
(
func
);
Py_XDECREF
(
func
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment