- Timestamp:
- Jan 6, 2007, 4:34:23 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
psi/trunk/src/tools/openpgp/gpgproc/qpipe.cpp
r2 r85 18 18 #include<fcntl.h> 19 19 #include<errno.h> 20 21 #if defined(Q_OS_OS2) && defined(__INNOTEK_LIBC__) 22 #include<sys/socket.h> 23 #endif 20 24 21 25 #endif … … 228 232 #else 229 233 int p[2]; 234 #if defined(Q_OS_OS2) && defined(__INNOTEK_LIBC__) 235 if(socketpair(AF_LOCAL, SOCK_STREAM, 0, p) == -1) 236 #else 230 237 if(pipe(p) == -1) 238 #endif 231 239 return false; 232 240 i.setId(p[0]);
Note:
See TracChangeset
for help on using the changeset viewer.