Changeset 33540 in vbox for trunk/include/iprt/req.h
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/req.h
r28800 r33540 155 155 156 156 /** 157 * Create a request packet queue u157 * Create a request packet queue 158 158 * 159 159 * @returns iprt status code. … … 164 164 165 165 /** 166 * Destroy a request packet queue u166 * Destroy a request packet queue 167 167 * 168 168 * @returns iprt status code. … … 189 189 * 190 190 * If it's desired to poll on the completion of the request set cMillies 191 * to 0 and use RTReqWait() to check for complet ation. In the other case191 * to 0 and use RTReqWait() to check for completion. In the other case 192 192 * use RT_INDEFINITE_WAIT. 193 193 * The returned request packet must be freed using RTReqFree(). … … 199 199 * @param pQueue The request queue. 200 200 * @param ppReq Where to store the pointer to the request. 201 * This will be NULL or a valid request pointer not matter what happen ds.201 * This will be NULL or a valid request pointer not matter what happens. 202 202 * @param cMillies Number of milliseconds to wait for the request to 203 203 * be completed. Use RT_INDEFINITE_WAIT to only … … 216 216 * 217 217 * If it's desired to poll on the completion of the request set cMillies 218 * to 0 and use RTReqWait() to check for complet ation. In the other case218 * to 0 and use RTReqWait() to check for completion. In the other case 219 219 * use RT_INDEFINITE_WAIT. 220 220 * The returned request packet must be freed using RTReqFree(). … … 226 226 * @param pQueue The request queue. 227 227 * @param ppReq Where to store the pointer to the request. 228 * This will be NULL or a valid request pointer not matter what happen ds.228 * This will be NULL or a valid request pointer not matter what happens. 229 229 * @param cMillies Number of milliseconds to wait for the request to 230 230 * be completed. Use RT_INDEFINITE_WAIT to only … … 243 243 * 244 244 * If it's desired to poll on the completion of the request set cMillies 245 * to 0 and use RTReqWait() to check for complet ation. In the other case245 * to 0 and use RTReqWait() to check for completion. In the other case 246 246 * use RT_INDEFINITE_WAIT. 247 247 * The returned request packet must be freed using RTReqFree(). … … 253 253 * @param pQueue The request queue. 254 254 * @param ppReq Where to store the pointer to the request. 255 * This will be NULL or a valid request pointer not matter what happen ds, unless fFlags255 * This will be NULL or a valid request pointer not matter what happens, unless fFlags 256 256 * contains RTREQFLAGS_NO_WAIT when it will be optional and always NULL. 257 257 * @param cMillies Number of milliseconds to wait for the request to … … 272 272 * 273 273 * If it's desired to poll on the completion of the request set cMillies 274 * to 0 and use RTReqWait() to check for complet ation. In the other case274 * to 0 and use RTReqWait() to check for completion. In the other case 275 275 * use RT_INDEFINITE_WAIT. 276 276 * The returned request packet must be freed using RTReqFree(). … … 282 282 * @param pQueue The request queue. 283 283 * @param ppReq Where to store the pointer to the request. 284 * This will be NULL or a valid request pointer not matter what happen ds, unless fFlags284 * This will be NULL or a valid request pointer not matter what happens, unless fFlags 285 285 * contains RTREQFLAGS_NO_WAIT when it will be optional and always NULL. 286 286 * @param cMillies Number of milliseconds to wait for the request to … … 335 335 * The quest must be allocated using RTReqAlloc() and contain 336 336 * all the required data. 337 * If it's d isired to poll on the completion of the request set cMillies338 * to 0 and use RTReqWait() to check for complet ation. In the other case337 * If it's desired to poll on the completion of the request set cMillies 338 * to 0 and use RTReqWait() to check for completion. In the other case 339 339 * use RT_INDEFINITE_WAIT. 340 340 *
Note:
See TracChangeset
for help on using the changeset viewer.