Changeset 27503 in vbox for trunk/src/VBox/Runtime/r3/posix/process-posix.cpp
- Timestamp:
- Mar 18, 2010 8:52:02 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/process-posix.cpp
r27502 r27503 61 61 #include <iprt/file.h> 62 62 #include <iprt/pipe.h> 63 #include <iprt/socket.h> 63 64 #include <iprt/string.h> 64 65 #include "internal/process.h" … … 118 119 break; 119 120 120 //case RTHANDLETYPE_SOCKET:121 //aStdFds[i] = paHandles[i]->u.hSocket != NIL_RTSOCKET122 // ? (int)paHandles[i]->u.hSocket //RTTcpToNative(paHandles[i]->u.hSocket)123 //: -2 /* close it */;124 //break;121 case RTHANDLETYPE_SOCKET: 122 aStdFds[i] = paHandles[i]->u.hSocket != NIL_RTSOCKET 123 ? (int)RTSocketToNative(paHandles[i]->u.hSocket) 124 : -2 /* close it */; 125 break; 125 126 126 127 default:
Note:
See TracChangeset
for help on using the changeset viewer.