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
237b5f44
Kaydet (Commit)
237b5f44
authored
Eki 12, 2000
tarafından
Fred Drake
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Andy Dustman <adustman@users.sourceforge.net>:
Eliminate unused variables to appease compiler.
üst
602aa77d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
thread_pth.h
Python/thread_pth.h
+0
-3
No files found.
Python/thread_pth.h
Dosyayı görüntüle @
237b5f44
...
@@ -47,7 +47,6 @@ static void PyThread__init_thread(void)
...
@@ -47,7 +47,6 @@ static void PyThread__init_thread(void)
int
PyThread_start_new_thread
(
void
(
*
func
)(
void
*
),
void
*
arg
)
int
PyThread_start_new_thread
(
void
(
*
func
)(
void
*
),
void
*
arg
)
{
{
pth_t
th
;
pth_t
th
;
int
success
;
dprintf
((
"PyThread_start_new_thread called
\n
"
));
dprintf
((
"PyThread_start_new_thread called
\n
"
));
if
(
!
initialized
)
if
(
!
initialized
)
PyThread_init_thread
();
PyThread_init_thread
();
...
@@ -145,7 +144,6 @@ PyThread_type_lock PyThread_allocate_lock(void)
...
@@ -145,7 +144,6 @@ PyThread_type_lock PyThread_allocate_lock(void)
void
PyThread_free_lock
(
PyThread_type_lock
lock
)
void
PyThread_free_lock
(
PyThread_type_lock
lock
)
{
{
pth_lock
*
thelock
=
(
pth_lock
*
)
lock
;
pth_lock
*
thelock
=
(
pth_lock
*
)
lock
;
int
status
,
error
=
0
;
dprintf
((
"PyThread_free_lock(%p) called
\n
"
,
lock
));
dprintf
((
"PyThread_free_lock(%p) called
\n
"
,
lock
));
...
@@ -246,7 +244,6 @@ PyThread_type_sema PyThread_allocate_sema(int value)
...
@@ -246,7 +244,6 @@ PyThread_type_sema PyThread_allocate_sema(int value)
void
PyThread_free_sema
(
PyThread_type_sema
sema
)
void
PyThread_free_sema
(
PyThread_type_sema
sema
)
{
{
int
status
,
error
=
0
;
struct
semaphore
*
thesema
=
(
struct
semaphore
*
)
sema
;
struct
semaphore
*
thesema
=
(
struct
semaphore
*
)
sema
;
dprintf
((
"PyThread_free_sema(%p) called
\n
"
,
sema
));
dprintf
((
"PyThread_free_sema(%p) called
\n
"
,
sema
));
...
...
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