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
10c30d67
Kaydet (Commit)
10c30d67
authored
Haz 09, 2011
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #8407: signal.sigwait() releases the GIL
Initial patch by Charles-François Natali.
üst
589f89e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
test_signal.py
Lib/test/test_signal.py
+19
-0
signalmodule.c
Modules/signalmodule.c
+2
-0
No files found.
Lib/test/test_signal.py
Dosyayı görüntüle @
10c30d67
...
...
@@ -607,6 +607,25 @@ class PendingSignalsTests(unittest.TestCase):
signal
.
alarm
(
1
)
self
.
assertEqual
(
signal
.
sigwait
([
signal
.
SIGALRM
]),
signal
.
SIGALRM
)
@unittest.skipUnless
(
hasattr
(
signal
,
'sigwait'
),
'need signal.sigwait()'
)
@unittest.skipIf
(
threading
is
None
,
"test needs threading module"
)
def
test_sigwait_thread
(
self
):
signum
=
signal
.
SIGUSR1
old_handler
=
signal
.
signal
(
signum
,
self
.
handler
)
self
.
addCleanup
(
signal
.
signal
,
signum
,
old_handler
)
def
kill_later
():
time
.
sleep
(
1
)
os
.
kill
(
os
.
getpid
(),
signum
)
killer
=
threading
.
Thread
(
target
=
kill_later
)
killer
.
start
()
try
:
self
.
assertEqual
(
signal
.
sigwait
([
signum
]),
signum
)
finally
:
killer
.
join
()
@unittest.skipUnless
(
hasattr
(
signal
,
'pthread_sigmask'
),
'need signal.pthread_sigmask()'
)
def
test_pthread_sigmask_arguments
(
self
):
...
...
Modules/signalmodule.c
Dosyayı görüntüle @
10c30d67
...
...
@@ -662,7 +662,9 @@ signal_sigwait(PyObject *self, PyObject *args)
if
(
iterable_to_sigset
(
signals
,
&
set
))
return
NULL
;
Py_BEGIN_ALLOW_THREADS
err
=
sigwait
(
&
set
,
&
signum
);
Py_END_ALLOW_THREADS
if
(
err
)
{
errno
=
err
;
return
PyErr_SetFromErrno
(
PyExc_OSError
);
...
...
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