Changeset 10 for python/trunk/Modules/_multiprocessing
- Timestamp:
- Sep 3, 2010, 5:33:06 PM (15 years ago)
- Location:
- python/trunk/Modules/_multiprocessing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Modules/_multiprocessing/multiprocessing.c
r2 r10 87 87 #else /* !MS_WINDOWS */ 88 88 89 #if HAVE_FD_TRANSFER89 #if defined(HAVE_FD_TRANSFER) 90 90 91 91 /* Functions for transferring file descriptors between processes. -
python/trunk/Modules/_multiprocessing/multiprocessing.h
r2 r10 28 28 # include <sys/uio.h> 29 29 # include <arpa/inet.h> /* htonl() and ntohl() */ 30 #ifndef __EMX__ 30 31 # if HAVE_SEM_OPEN 31 32 # include <semaphore.h> 32 33 typedef sem_t *SEM_HANDLE; 33 34 # endif 35 #else 36 # define SEM_HANDLE HANDLE 37 #endif 34 38 # define HANDLE int 35 39 # define SOCKET int
Note:
See TracChangeset
for help on using the changeset viewer.