Changeset 67151 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- May 31, 2017 7:12:18 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115827
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/socket.cpp
r66862 r67151 1545 1545 if (rc > 0) 1546 1546 { 1547 if (FD_ISSET(pThis->hNative, &fdsetR)) 1548 *pfEvents |= RTSOCKET_EVT_READ; 1549 if (FD_ISSET(pThis->hNative, &fdsetW)) 1550 *pfEvents |= RTSOCKET_EVT_WRITE; 1551 if (FD_ISSET(pThis->hNative, &fdsetE)) 1552 *pfEvents |= RTSOCKET_EVT_ERROR; 1547 if (pThis->hNative != NIL_RTSOCKETNATIVE) 1548 { 1549 if (FD_ISSET(pThis->hNative, &fdsetR)) 1550 *pfEvents |= RTSOCKET_EVT_READ; 1551 if (FD_ISSET(pThis->hNative, &fdsetW)) 1552 *pfEvents |= RTSOCKET_EVT_WRITE; 1553 if (FD_ISSET(pThis->hNative, &fdsetE)) 1554 *pfEvents |= RTSOCKET_EVT_ERROR; 1555 } 1553 1556 1554 1557 rc = VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.