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
079ce54e
Kaydet (Commit)
079ce54e
authored
14 years ago
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
thread-local storage key.
üst
121a1c4e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
NEWS
Misc/NEWS
+3
-0
pystate.c
Python/pystate.c
+7
-8
No files found.
Misc/NEWS
Dosyayı görüntüle @
079ce54e
...
...
@@ -10,6 +10,9 @@ What's New in Python 3.2 Alpha 3?
Core and Builtins
-----------------
- Issue #9797: pystate.c wrongly assumed that zero couldn't be a valid
thread-local storage key.
Library
-------
...
...
This diff is collapsed.
Click to expand it.
Python/pystate.c
Dosyayı görüntüle @
079ce54e
...
...
@@ -340,7 +340,7 @@ PyThreadState_Delete(PyThreadState *tstate)
Py_FatalError
(
"PyThreadState_Delete: tstate is still current"
);
tstate_delete_common
(
tstate
);
#ifdef WITH_THREAD
if
(
auto
TLSkey
&&
PyThread_get_key_value
(
autoTLSkey
)
==
tstate
)
if
(
auto
InterpreterState
&&
PyThread_get_key_value
(
autoTLSkey
)
==
tstate
)
PyThread_delete_key_value
(
autoTLSkey
);
#endif
/* WITH_THREAD */
}
...
...
@@ -357,7 +357,7 @@ PyThreadState_DeleteCurrent()
"PyThreadState_DeleteCurrent: no current tstate"
);
_Py_atomic_store_relaxed
(
&
_PyThreadState_Current
,
NULL
);
tstate_delete_common
(
tstate
);
if
(
auto
TLSkey
&&
PyThread_get_key_value
(
autoTLSkey
)
==
tstate
)
if
(
auto
InterpreterState
&&
PyThread_get_key_value
(
autoTLSkey
)
==
tstate
)
PyThread_delete_key_value
(
autoTLSkey
);
PyEval_ReleaseLock
();
}
...
...
@@ -580,7 +580,6 @@ void
_PyGILState_Fini
(
void
)
{
PyThread_delete_key
(
autoTLSkey
);
autoTLSkey
=
0
;
autoInterpreterState
=
NULL
;
}
...
...
@@ -592,10 +591,10 @@ _PyGILState_Fini(void)
static
void
_PyGILState_NoteThreadState
(
PyThreadState
*
tstate
)
{
/* If autoTLSkey is
0, this must be the very first threadstate created
in Py_Initialize(). Don't do anything for now (we'll be back here
when _PyGILState_Init is called). */
if
(
!
auto
TLSkey
)
/* If autoTLSkey is
n't initialized, this must be the very first
threadstate created in Py_Initialize(). Don't do anything for now
(we'll be back here
when _PyGILState_Init is called). */
if
(
!
auto
InterpreterState
)
return
;
/* Stick the thread state for this thread in thread local storage.
...
...
@@ -623,7 +622,7 @@ _PyGILState_NoteThreadState(PyThreadState* tstate)
PyThreadState
*
PyGILState_GetThisThreadState
(
void
)
{
if
(
autoInterpreterState
==
NULL
||
autoTLSkey
==
0
)
if
(
autoInterpreterState
==
NULL
)
return
NULL
;
return
(
PyThreadState
*
)
PyThread_get_key_value
(
autoTLSkey
);
}
...
...
This diff is collapsed.
Click to expand it.
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