Changeset 31105 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jul 26, 2010 11:04:01 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/socket.cpp
r31104 r31105 258 258 { 259 259 #ifdef RT_OS_WINDOWS 260 if (ioctlsocket(pThis->hNative, FIONBIO, fBlocking ? 0 : 1)) 260 u_long uBlocking = fBlocking ? 0 : 1; 261 if (ioctlsocket(pThis->hNative, FIONBIO, &uBlocking)) 261 262 #else 262 263 if (fcntl(pThis->hNative, F_SETFL, O_NONBLOCK))
Note:
See TracChangeset
for help on using the changeset viewer.