Changeset 37596 in vbox for trunk/src/VBox/Runtime/r3/posix/fileaio-posix.cpp
- Timestamp:
- Jun 22, 2011 7:30:06 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72442
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/fileaio-posix.cpp
r33540 r37596 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2011 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 407 407 pReqInt->fFlush = false; 408 408 pReqInt->AioCB.aio_lio_opcode = uTransferDirection; 409 pReqInt->AioCB.aio_fildes = (int)hFile;409 pReqInt->AioCB.aio_fildes = RTFileToNative(hFile); 410 410 pReqInt->AioCB.aio_offset = off; 411 411 pReqInt->AioCB.aio_nbytes = cbTransfer; … … 445 445 446 446 pReqInt->fFlush = true; 447 pReqInt->AioCB.aio_fildes = (int)hFile;447 pReqInt->AioCB.aio_fildes = RTFileToNative(hFile); 448 448 pReqInt->AioCB.aio_offset = 0; 449 449 pReqInt->AioCB.aio_nbytes = 0;
Note:
See TracChangeset
for help on using the changeset viewer.