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
d9a52f26
Kaydet (Commit)
d9a52f26
authored
Haz 19, 2013
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
merge heads
üst
d2774c7d
9a00e0a4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
thread_pthread.h
Python/thread_pthread.h
+3
-0
No files found.
Misc/ACKS
Dosyayı görüntüle @
d9a52f26
...
...
@@ -327,6 +327,7 @@ Maxim Dzumanenko
Walter Dörwald
Hans Eckardt
Rodolpho Eckhardt
David Edelsohn
John Edmonds
Grant Edwards
John Ehresman
...
...
Misc/NEWS
Dosyayı görüntüle @
d9a52f26
...
...
@@ -143,6 +143,9 @@ Tools/Demos
Build
-----
-
Issue
#
18256
:
Compilation
fix
for
recent
AIX
releases
.
Patch
by
David
Edelsohn
.
-
Issue
#
15172
:
Document
NASM
2.10
+
as
requirement
for
building
OpenSSL
1.0.1
on
Windows
.
...
...
Python/thread_pthread.h
Dosyayı görüntüle @
d9a52f26
...
...
@@ -170,6 +170,7 @@ static void
PyThread__init_thread
(
void
)
{
#if defined(_AIX) && defined(__GNUC__)
extern
void
pthread_init
(
void
);
pthread_init
();
#endif
}
...
...
@@ -444,6 +445,7 @@ PyThread_free_lock(PyThread_type_lock lock)
pthread_lock
*
thelock
=
(
pthread_lock
*
)
lock
;
int
status
,
error
=
0
;
(
void
)
error
;
/* silence unused-but-set-variable warning */
dprintf
((
"PyThread_free_lock(%p) called
\n
"
,
lock
));
/* some pthread-like implementations tie the mutex to the cond
...
...
@@ -530,6 +532,7 @@ PyThread_release_lock(PyThread_type_lock lock)
pthread_lock
*
thelock
=
(
pthread_lock
*
)
lock
;
int
status
,
error
=
0
;
(
void
)
error
;
/* silence unused-but-set-variable warning */
dprintf
((
"PyThread_release_lock(%p) called
\n
"
,
lock
));
status
=
pthread_mutex_lock
(
&
thelock
->
mut
);
...
...
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