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
8a64048a
Kaydet (Commit)
8a64048a
authored
Ara 13, 2008
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Backport of r64212
Issue #1683: prevent forking from interfering in threading storage.
üst
e9859df7
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
0 deletions
+39
-0
pythread.h
Include/pythread.h
+3
-0
NEWS
Misc/NEWS
+2
-0
signalmodule.c
Modules/signalmodule.c
+1
-0
intrcheck.c
Parser/intrcheck.c
+2
-0
thread.c
Python/thread.c
+31
-0
No files found.
Include/pythread.h
Dosyayı görüntüle @
8a64048a
...
...
@@ -40,6 +40,9 @@ PyAPI_FUNC(int) PyThread_set_key_value(int, void *);
PyAPI_FUNC
(
void
*
)
PyThread_get_key_value
(
int
);
PyAPI_FUNC
(
void
)
PyThread_delete_key_value
(
int
key
);
/* Cleanup after a fork */
PyAPI_FUNC
(
void
)
PyThread_ReInitTLS
(
void
);
#ifdef __cplusplus
}
#endif
...
...
Misc/NEWS
Dosyayı görüntüle @
8a64048a
...
...
@@ -12,6 +12,8 @@ What's New in Python 2.5.3?
Core and builtins
-----------------
- Issue #1683: prevent forking from interfering in threading storage.
- Issue #4597: Fixed several opcodes that weren'
t
always
propagating
exceptions
.
...
...
Modules/signalmodule.c
Dosyayı görüntüle @
8a64048a
...
...
@@ -693,5 +693,6 @@ PyOS_AfterFork(void)
main_thread
=
PyThread_get_thread_ident
();
main_pid
=
getpid
();
_PyImport_ReInitLock
();
PyThread_ReInitTLS
();
#endif
}
Parser/intrcheck.c
Dosyayı görüntüle @
8a64048a
...
...
@@ -2,6 +2,7 @@
/* Check for interrupts */
#include "Python.h"
#include "pythread.h"
#ifdef QUICKWIN
...
...
@@ -172,5 +173,6 @@ PyOS_AfterFork(void)
{
#ifdef WITH_THREAD
PyEval_ReInitThreads
();
PyThread_ReInitTLS
();
#endif
}
Python/thread.c
Dosyayı görüntüle @
8a64048a
...
...
@@ -391,4 +391,35 @@ PyThread_delete_key_value(int key)
PyThread_release_lock
(
keymutex
);
}
/* Forget everything not associated with the current thread id.
* This function is called from PyOS_AfterFork(). It is necessary
* because other thread ids which were in use at the time of the fork
* may be reused for new threads created in the forked process.
*/
void
PyThread_ReInitTLS
(
void
)
{
long
id
=
PyThread_get_thread_ident
();
struct
key
*
p
,
**
q
;
if
(
!
keymutex
)
return
;
/* As with interpreter_lock in PyEval_ReInitThreads()
we just create a new lock without freeing the old one */
keymutex
=
PyThread_allocate_lock
();
/* Delete all keys which do not match the current thread id */
q
=
&
keyhead
;
while
((
p
=
*
q
)
!=
NULL
)
{
if
(
p
->
id
!=
id
)
{
*
q
=
p
->
next
;
free
((
void
*
)
p
);
/* NB This does *not* free p->value! */
}
else
q
=
&
p
->
next
;
}
}
#endif
/* Py_HAVE_NATIVE_TLS */
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