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
52aee856
Kaydet (Commit)
52aee856
authored
Agu 16, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22156: simplify _tracemalloc.c, use an int for the MAX_NFRAME constant
üst
69c1a665
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
_tracemalloc.c
Modules/_tracemalloc.c
+6
-6
No files found.
Modules/_tracemalloc.c
Dosyayı görüntüle @
52aee856
...
...
@@ -79,7 +79,7 @@ typedef struct {
(sizeof(traceback_t) + sizeof(frame_t) * (NFRAME - 1))
#define MAX_NFRAME \
((
(size_t)INT_MAX - sizeof(traceback_t)) /
sizeof(frame_t) + 1)
((
INT_MAX - (int)sizeof(traceback_t)) / (int)
sizeof(frame_t) + 1)
static
PyObject
*
unknown_filename
=
NULL
;
static
traceback_t
tracemalloc_empty_traceback
;
...
...
@@ -874,7 +874,7 @@ tracemalloc_start(int max_nframe)
return
0
;
}
assert
(
1
<=
max_nframe
&&
(
size_t
)
max_nframe
<=
MAX_NFRAME
);
assert
(
1
<=
max_nframe
&&
max_nframe
<=
MAX_NFRAME
);
tracemalloc_config
.
max_nframe
=
max_nframe
;
/* allocate a buffer to store a new traceback */
...
...
@@ -1226,10 +1226,10 @@ py_tracemalloc_start(PyObject *self, PyObject *args)
if
(
!
PyArg_ParseTuple
(
args
,
"|n:start"
,
&
nframe
))
return
NULL
;
if
(
nframe
<
1
||
(
size_t
)
nframe
>
MAX_NFRAME
)
{
if
(
nframe
<
1
||
nframe
>
MAX_NFRAME
)
{
PyErr_Format
(
PyExc_ValueError
,
"the number of frames must be in range [1; %i]"
,
(
int
)
MAX_NFRAME
);
MAX_NFRAME
);
return
NULL
;
}
nframe_int
=
Py_SAFE_DOWNCAST
(
nframe
,
Py_ssize_t
,
int
);
...
...
@@ -1388,7 +1388,7 @@ parse_sys_xoptions(PyObject *value)
if
(
nframe
==
-
1
&&
PyErr_Occurred
())
return
-
1
;
if
(
nframe
<
1
||
(
size_t
)
nframe
>
MAX_NFRAME
)
if
(
nframe
<
1
||
nframe
>
MAX_NFRAME
)
return
-
1
;
return
Py_SAFE_DOWNCAST
(
nframe
,
long
,
int
);
...
...
@@ -1412,7 +1412,7 @@ _PyTraceMalloc_Init(void)
value
=
strtol
(
p
,
&
endptr
,
10
);
if
(
*
endptr
!=
'\0'
||
value
<
1
||
(
size_t
)
value
>
MAX_NFRAME
||
value
>
MAX_NFRAME
||
errno
==
ERANGE
)
{
Py_FatalError
(
"PYTHONTRACEMALLOC: invalid number of frames"
);
...
...
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