Changeset 664 for trunk/server/source3/lib/os2helper.c
- Timestamp:
- Nov 15, 2011, 11:46:55 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server/source3/lib/os2helper.c
r658 r664 177 177 */ 178 178 179 // OS/2 specific socketpair() implementation, as it only works in low mem 180 int os2_socketpair(int fds[2]) 179 // OS/2 specific pipe implementation, we have to use socketpair as select on filehandle is not working 180 // and we have to use local variables to be sure we use low mem, as socketpair doesn't work in high mem 181 int os2_pipe(int fds[2]) 181 182 { 182 183 int mypair[2];
Note:
See TracChangeset
for help on using the changeset viewer.