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
f23339a7
Kaydet (Commit)
f23339a7
authored
Tem 23, 2011
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue 12620: Make pendingbusy flag static to Py_MakePendingCalls().
üst
d2d7a3b0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
ceval.c
Python/ceval.c
+4
-4
No files found.
Python/ceval.c
Dosyayı görüntüle @
f23339a7
...
...
@@ -491,7 +491,6 @@ static struct {
}
pendingcalls
[
NPENDINGCALLS
];
static
int
pendingfirst
=
0
;
static
int
pendinglast
=
0
;
static
char
pendingbusy
=
0
;
int
Py_AddPendingCall
(
int
(
*
func
)(
void
*
),
void
*
arg
)
...
...
@@ -538,6 +537,7 @@ Py_AddPendingCall(int (*func)(void *), void *arg)
int
Py_MakePendingCalls
(
void
)
{
static
int
busy
=
0
;
int
i
;
int
r
=
0
;
...
...
@@ -552,9 +552,9 @@ Py_MakePendingCalls(void)
if
(
main_thread
&&
PyThread_get_thread_ident
()
!=
main_thread
)
return
0
;
/* don't perform recursive pending calls */
if
(
pending
busy
)
if
(
busy
)
return
0
;
pending
busy
=
1
;
busy
=
1
;
/* perform a bounded number of calls, in case of recursion */
for
(
i
=
0
;
i
<
NPENDINGCALLS
;
i
++
)
{
int
j
;
...
...
@@ -583,7 +583,7 @@ Py_MakePendingCalls(void)
if
(
r
)
break
;
}
pending
busy
=
0
;
busy
=
0
;
return
r
;
}
...
...
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