Changeset 699 for branches/samba-3.3.x/source/lib/select.c
- Timestamp:
- Apr 23, 2012, 8:01:39 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.3.x/source/lib/select.c
r578 r699 28 28 This means all Samba signal handlers should call sys_select_signal(). 29 29 */ 30 #ifdef __OS2__ 31 #define pipe(A) os2_pipe(A) 32 #endif 30 33 31 34 static pid_t initialised; … … 59 62 60 63 if (initialised != sys_getpid()) { 61 #ifndef __OS2__62 64 if (pipe(select_pipe) == -1) 63 #else64 if (socketpair(AF_UNIX, SOCK_STREAM,0, select_pipe) == -1)65 #endif66 65 smb_panic("Could not create select pipe"); 67 66
Note:
See TracChangeset
for help on using the changeset viewer.