Changeset 27509 in vbox for trunk/include
- Timestamp:
- Mar 18, 2010 11:47:16 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 59012
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/poll.h
r26844 r27509 181 181 * @param hPollSet The poll set. 182 182 */ 183 RTDECL(uint32_t) RTPollSet Count(RTPOLLSET hPollSet);183 RTDECL(uint32_t) RTPollSetGetCount(RTPOLLSET hPollSet); 184 184 185 185 /** … … 200 200 RTHANDLE Handle; 201 201 Handle.enmType = RTHANDLETYPE_PIPE; 202 Handle.u.uInt = 0; 202 203 Handle.u.hPipe = hPipe; 203 204 return RTPollSetAdd(hPollSet, &Handle, fEvents, id); … … 218 219 RTHANDLE Handle; 219 220 Handle.enmType = RTHANDLETYPE_SOCKET; 221 Handle.u.uInt = 0; 220 222 Handle.u.hSocket = hSocket; 221 223 return RTPollSetAdd(hPollSet, &Handle, fEvents, id); -
trunk/include/iprt/types.h
r27497 r27509 1404 1404 RTSOCKET hSocket; /**< Socket handle. */ 1405 1405 RTTHREAD hThread; /**< Thread handle. */ 1406 /** Generic integer handle value. 1407 * Note that RTFILE is not yet pointer sized, so accessing it via this member 1408 * isn't necessarily safe or fully portable. */ 1409 RTHCUINTPTR uInt; 1406 1410 } RTHANDLEUNION; 1407 1411 /** Pointer to a handle union. */
Note:
See TracChangeset
for help on using the changeset viewer.