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
19f8edc3
Kaydet (Commit)
19f8edc3
authored
Eki 10, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #10062: Allow building on platforms which do not have sem_timedwait.
üst
1bf29b7d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
NEWS
Misc/NEWS
+2
-0
thread_pthread.h
Python/thread_pthread.h
+2
-1
No files found.
Misc/NEWS
Dosyayı görüntüle @
19f8edc3
...
@@ -346,6 +346,8 @@ Tests
...
@@ -346,6 +346,8 @@ Tests
Build
Build
-----
-----
- Issue #10062: Allow building on platforms which do not have sem_timedwait.
- Issue #10054: Some platforms provide uintptr_t in inttypes.h. Patch by
- Issue #10054: Some platforms provide uintptr_t in inttypes.h. Patch by
Akira Kitada.
Akira Kitada.
...
...
Python/thread_pthread.h
Dosyayı görüntüle @
19f8edc3
...
@@ -64,7 +64,8 @@
...
@@ -64,7 +64,8 @@
/* Whether or not to use semaphores directly rather than emulating them with
/* Whether or not to use semaphores directly rather than emulating them with
* mutexes and condition variables:
* mutexes and condition variables:
*/
*/
#if defined(_POSIX_SEMAPHORES) && !defined(HAVE_BROKEN_POSIX_SEMAPHORES)
#if (defined(_POSIX_SEMAPHORES) && !defined(HAVE_BROKEN_POSIX_SEMAPHORES) && \
defined(HAVE_SEM_TIMEDWAIT))
# define USE_SEMAPHORES
# define USE_SEMAPHORES
#else
#else
# undef USE_SEMAPHORES
# undef USE_SEMAPHORES
...
...
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