Changeset 29129 in vbox for trunk/src/VBox/Runtime/r3/posix/fileaio-posix.cpp
- Timestamp:
- May 6, 2010 10:40:30 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61195
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fileaio-posix.cpp
r28800 r29129 396 396 397 397 memset(&pReqInt->AioCB, 0, sizeof(struct aiocb)); 398 pReqInt->fFlush = false; 398 399 pReqInt->AioCB.aio_lio_opcode = uTransferDirection; 399 400 pReqInt->AioCB.aio_fildes = (int)hFile; … … 436 437 pReqInt->fFlush = true; 437 438 pReqInt->AioCB.aio_fildes = (int)hFile; 439 pReqInt->AioCB.aio_offset = 0; 440 pReqInt->AioCB.aio_nbytes = 0; 441 pReqInt->AioCB.aio_buf = NULL; 438 442 pReqInt->pvUser = pvUser; 443 pReqInt->Rc = VERR_FILE_AIO_IN_PROGRESS; 439 444 RTFILEAIOREQ_SET_STATE(pReqInt, PREPARED); 440 445
Note:
See TracChangeset
for help on using the changeset viewer.