Changeset 31453 in vbox for trunk/include
- Timestamp:
- Aug 8, 2010 1:30:35 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 64526
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/poll.h
r28800 r31453 56 56 * @retval VINF_SUCCESS if an event occured on a handle. Note that these 57 57 * @retval VERR_INVALID_HANDLE if @a hPollSet is invalid. 58 * @retval VERR_ WRONG_ORDERif another thread is already accessing the set. The58 * @retval VERR_CONCURRENT_ACCESS if another thread is already accessing the set. The 59 59 * user is responsible for ensuring single threaded access. 60 60 * @retval VERR_TIMEOUT if @a cMillies ellapsed without any events. … … 82 82 * @retval VINF_SUCCESS if an event occured on a handle. Note that these 83 83 * @retval VERR_INVALID_HANDLE if @a hPollSet is invalid. 84 * @retval VERR_ WRONG_ORDERif another thread is already accessing the set. The84 * @retval VERR_CONCURRENT_ACCESS if another thread is already accessing the set. The 85 85 * user is responsible for ensuring single threaded access. 86 86 * @retval VERR_TIMEOUT if @a cMillies ellapsed without any events. … … 121 121 * 122 122 * @returns IPRT status code 123 * @retval VERR_ WRONG_ORDERif another thread is already accessing the set. The123 * @retval VERR_CONCURRENT_ACCESS if another thread is already accessing the set. The 124 124 * user is responsible for ensuring single threaded access. 125 125 * @retval VERR_POLL_HANDLE_NOT_POLLABLE if the specified handle is not … … 141 141 * @returns IPRT status code 142 142 * @retval VERR_INVALID_HANDLE if @a hPollSet not valid. 143 * @retval VERR_ WRONG_ORDERif another thread is already accessing the set. The143 * @retval VERR_CONCURRENT_ACCESS if another thread is already accessing the set. The 144 144 * user is responsible for ensuring single threaded access. 145 145 * @retval VERR_POLL_HANDLE_ID_NOT_FOUND if @a id doesn't resolve to a valid … … 159 159 * @retval VINF_SUCCESS if the handle was found. @a *pHandle is set. 160 160 * @retval VERR_INVALID_HANDLE if @a hPollSet is invalid. 161 * @retval VERR_ WRONG_ORDERif another thread is already accessing the set. The161 * @retval VERR_CONCURRENT_ACCESS if another thread is already accessing the set. The 162 162 * user is responsible for ensuring single threaded access. 163 163 * @retval VERR_POLL_HANDLE_ID_NOT_FOUND if there is no handle with that ID. … … 178 178 */ 179 179 RTDECL(uint32_t) RTPollSetGetCount(RTPOLLSET hPollSet); 180 181 /** 182 * Modifies the events to poll for for the given id. 183 * 184 * @returns IPRT status code. 185 * @retval VERR_INVALID_HANDLE if @a hPollSet not valid. 186 * @retval VERR_CONCURRENT_ACCESS if another thread is already accessing the set. The 187 * user is responsible for ensuring single threaded access. 188 * @retval VERR_POLL_HANDLE_ID_NOT_FOUND if @a id doesn't resolve to a valid 189 * handle. 190 * 191 * @param hPollSet The poll set to modify. 192 * @param id The handle ID to change the events for. 193 * @param fEvents Which events to poll for. 194 */ 195 RTDECL(int) RTPollSetEventsChange(RTPOLLSET hPollSet, uint32_t id, uint32_t fEvents); 180 196 181 197 /**
Note:
See TracChangeset
for help on using the changeset viewer.