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
53fa8b2a
Kaydet (Commit)
53fa8b2a
authored
Şub 16, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed few compiler warnings.
üst
a9e00d13
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
10 deletions
+9
-10
_codecs_iso2022.c
Modules/cjkcodecs/_codecs_iso2022.c
+3
-4
faulthandler.c
Modules/faulthandler.c
+1
-1
ceval_gil.h
Python/ceval_gil.h
+2
-2
pylifecycle.c
Python/pylifecycle.c
+1
-1
pystate.c
Python/pystate.c
+2
-2
No files found.
Modules/cjkcodecs/_codecs_iso2022.c
Dosyayı görüntüle @
53fa8b2a
...
...
@@ -292,7 +292,7 @@ iso2022processesc(const void *config, MultibyteCodec_State *state,
const
unsigned
char
**
inbuf
,
Py_ssize_t
*
inleft
)
{
unsigned
char
charset
,
designation
;
Py_ssize_t
i
,
esclen
;
Py_ssize_t
i
,
esclen
=
0
;
for
(
i
=
1
;
i
<
MAX_ESCSEQLEN
;
i
++
)
{
if
(
i
>=
*
inleft
)
...
...
@@ -307,10 +307,9 @@ iso2022processesc(const void *config, MultibyteCodec_State *state,
}
}
if
(
i
>=
MAX_ESCSEQLEN
)
return
1
;
/* unterminated escape sequence */
switch
(
esclen
)
{
case
0
:
return
1
;
/* unterminated escape sequence */
case
3
:
if
(
INBYTE2
==
'$'
)
{
charset
=
INBYTE3
|
CHARSET_DBCS
;
...
...
Modules/faulthandler.c
Dosyayı görüntüle @
53fa8b2a
...
...
@@ -458,7 +458,7 @@ faulthandler_thread(void *unused)
assert
(
st
==
PY_LOCK_FAILURE
);
/* get the thread holding the GIL, NULL if no thread hold the GIL */
current
=
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
);
current
=
(
PyThreadState
*
)
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
);
write
(
thread
.
fd
,
thread
.
header
,
(
int
)
thread
.
header_len
);
...
...
Python/ceval_gil.h
Dosyayı görüntüle @
53fa8b2a
...
...
@@ -191,7 +191,7 @@ static void drop_gil(PyThreadState *tstate)
if
(
_Py_atomic_load_relaxed
(
&
gil_drop_request
)
&&
tstate
!=
NULL
)
{
MUTEX_LOCK
(
switch_mutex
);
/* Not switched yet => wait */
if
(
_Py_atomic_load_relaxed
(
&
gil_last_holder
)
==
tstate
)
{
if
(
(
PyThreadState
*
)
_Py_atomic_load_relaxed
(
&
gil_last_holder
)
==
tstate
)
{
RESET_GIL_DROP_REQUEST
();
/* NOTE: if COND_WAIT does not atomically start waiting when
releasing the mutex, another thread can run through, take
...
...
@@ -239,7 +239,7 @@ _ready:
_Py_atomic_store_relaxed
(
&
gil_locked
,
1
);
_Py_ANNOTATE_RWLOCK_ACQUIRED
(
&
gil_locked
,
/*is_write=*/
1
);
if
(
tstate
!=
_Py_atomic_load_relaxed
(
&
gil_last_holder
))
{
if
(
tstate
!=
(
PyThreadState
*
)
_Py_atomic_load_relaxed
(
&
gil_last_holder
))
{
_Py_atomic_store_relaxed
(
&
gil_last_holder
,
tstate
);
++
gil_switch_number
;
}
...
...
Python/pylifecycle.c
Dosyayı görüntüle @
53fa8b2a
...
...
@@ -1258,7 +1258,7 @@ Py_FatalError(const char *msg)
PyErr_PrintEx
(
0
);
}
else
{
tstate
=
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
);
tstate
=
(
PyThreadState
*
)
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
);
if
(
tstate
!=
NULL
)
{
fputc
(
'\n'
,
stderr
);
fflush
(
stderr
);
...
...
Python/pystate.c
Dosyayı görüntüle @
53fa8b2a
...
...
@@ -403,7 +403,7 @@ tstate_delete_common(PyThreadState *tstate)
void
PyThreadState_Delete
(
PyThreadState
*
tstate
)
{
if
(
tstate
==
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
))
if
(
tstate
==
(
PyThreadState
*
)
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
))
Py_FatalError
(
"PyThreadState_Delete: tstate is still current"
);
#ifdef WITH_THREAD
if
(
autoInterpreterState
&&
PyThread_get_key_value
(
autoTLSkey
)
==
tstate
)
...
...
@@ -662,7 +662,7 @@ PyThreadState_IsCurrent(PyThreadState *tstate)
{
/* Must be the tstate for this thread */
assert
(
PyGILState_GetThisThreadState
()
==
tstate
);
return
tstate
==
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
);
return
tstate
==
(
PyThreadState
*
)
_Py_atomic_load_relaxed
(
&
_PyThreadState_Current
);
}
/* Internal initialization/finalization functions called by
...
...
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