Changeset 18912 in vbox for trunk/include/iprt/file.h
- Timestamp:
- Apr 15, 2009 8:39:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/file.h
r18911 r18912 794 794 * @param cbRead Number of bytes to read. 795 795 * @param pvUser Opaque user data associated with this request which 796 * can be retrieved with RTFileA syncRequestGetUser()796 * can be retrieved with RTFileAioReqGetUser() 797 797 */ 798 798 RTDECL(int) RTFileAioReqPrepareRead(RTFILEAIOREQ hRequest, RTFILE File, … … 810 810 * @param cbRead Number of bytes to write. 811 811 * @param pvUser Opaque user data associated with this request which 812 * can be retrieved with RTFileA syncRequestGetUser()812 * can be retrieved with RTFileAioReqGetUser() 813 813 */ 814 814 RTDECL(int) RTFileAioReqPrepareWrite(RTFILEAIOREQ hRequest, RTFILE File, … … 823 823 * @param File The file to flush. 824 824 * @param pvUser Opaque user data associated with this request which 825 * can be retrieved with RTFileA syncRequestGetUser()825 * can be retrieved with RTFileAioReqGetUser() 826 826 */ 827 827 RTDECL(int) RTFileAioReqPrepareFlush(RTFILEAIOREQ Request, RTFILE File, void *pvUser); … … 884 884 * @param hAioContext The aio context handle. 885 885 * If NIL_RTAIOCONTEXT is passed the maximum value 886 * which can be passed to RTFileA syncIoContextCreate()886 * which can be passed to RTFileAioCtxCreate() 887 887 * is returned. 888 888 */ … … 905 905 * @retval VERR_NUMBER_TOO_BIG If cMinRequests or cMaxRequests exceeds limit. 906 906 * @retval VERR_TIMEOUT If the timeout value expired before at least cMinRequests requests finished. 907 * @retval VERR_INTERRUPTED If the completion context was interrupted with RTFileA syncIoContextWakeup().907 * @retval VERR_INTERRUPTED If the completion context was interrupted with RTFileAioCtxWakeup(). 908 908 * @retval VERR_FILE_AIO_NO_REQUEST If there is no pending request to wait for completion. 909 909 * … … 921 921 922 922 /** 923 * Let's return RTFileA syncIoContextWaitForCompletion() immediateley.923 * Let's return RTFileAioCtxWaitForCompletion() immediateley. 924 924 * 925 925 * @returns IPRT status code.
Note:
See TracChangeset
for help on using the changeset viewer.