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
227e377b
Kaydet (Commit)
227e377b
authored
Şub 02, 2012
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge.
üst
9713321f
6d0d24e3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletion
+26
-1
test_threading.py
Lib/test/test_threading.py
+23
-0
signalmodule.c
Modules/signalmodule.c
+3
-1
No files found.
Lib/test/test_threading.py
Dosyayı görüntüle @
227e377b
...
...
@@ -666,6 +666,29 @@ class ThreadJoinOnShutdown(BaseTestCase):
rc
,
out
,
err
=
assert_python_ok
(
'-c'
,
script
)
self
.
assertFalse
(
err
)
@unittest.skipUnless
(
hasattr
(
os
,
'fork'
),
"needs os.fork()"
)
def
test_reinit_tls_after_fork
(
self
):
# Issue #13817: fork() would deadlock in a multithreaded program with
# the ad-hoc TLS implementation.
def
do_fork_and_wait
():
# just fork a child process and wait it
pid
=
os
.
fork
()
if
pid
>
0
:
os
.
waitpid
(
pid
,
0
)
else
:
os
.
_exit
(
0
)
# start a bunch of threads that will fork() child processes
threads
=
[]
for
i
in
range
(
16
):
t
=
threading
.
Thread
(
target
=
do_fork_and_wait
)
threads
.
append
(
t
)
t
.
start
()
for
t
in
threads
:
t
.
join
()
class
ThreadingExceptionTests
(
BaseTestCase
):
# A RuntimeError should be raised if Thread.start() is called
...
...
Modules/signalmodule.c
Dosyayı görüntüle @
227e377b
...
...
@@ -991,11 +991,13 @@ void
PyOS_AfterFork
(
void
)
{
#ifdef WITH_THREAD
/* PyThread_ReInitTLS() must be called early, to make sure that the TLS API
* can be called safely. */
PyThread_ReInitTLS
();
_PyGILState_Reinit
();
PyEval_ReInitThreads
();
main_thread
=
PyThread_get_thread_ident
();
main_pid
=
getpid
();
_PyImport_ReInitLock
();
PyThread_ReInitTLS
();
#endif
}
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