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
26eec587
Kaydet (Commit)
26eec587
authored
Haz 04, 2010
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #8864: Define _XOPEN_SOURCE on Solaris for the
multiprocessing module.
üst
fb695014
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
NEWS
Misc/NEWS
+2
-1
multiprocessing.h
Modules/_multiprocessing/multiprocessing.h
+6
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
26eec587
...
@@ -120,7 +120,8 @@ Tests
...
@@ -120,7 +120,8 @@ Tests
Build
Build
-----
-----
- Issue #1759169: Drop _XOPEN_SOURCE on Solaris.
- Issues #1759169, #8864: Drop _XOPEN_SOURCE on Solaris, define it for
multiprocessing only.
What's New in Python 2.7 beta 2?
What's New in Python 2.7 beta 2?
================================
================================
...
...
Modules/_multiprocessing/multiprocessing.h
Dosyayı görüntüle @
26eec587
...
@@ -3,6 +3,12 @@
...
@@ -3,6 +3,12 @@
#define PY_SSIZE_T_CLEAN
#define PY_SSIZE_T_CLEAN
#ifdef __sun
/* The control message API is only available on Solaris
if XPG 4.2 or later is requested. */
#define _XOPEN_SOURCE 500
#endif
#include "Python.h"
#include "Python.h"
#include "structmember.h"
#include "structmember.h"
#include "pythread.h"
#include "pythread.h"
...
...
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