Changeset 37774 in vbox for trunk/src/VBox/Runtime/r3/freebsd/fileaio-freebsd.cpp
- Timestamp:
- Jul 4, 2011 9:19:27 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/freebsd/fileaio-freebsd.cpp
r33540 r37774 200 200 pReqInt->AioCB.aio_sigevent.sigev_value.sival_ptr = pReqInt; 201 201 pReqInt->AioCB.aio_lio_opcode = uTransferDirection; 202 pReqInt->AioCB.aio_fildes = (int)hFile;202 pReqInt->AioCB.aio_fildes = RTFileToNative(hFile); 203 203 pReqInt->AioCB.aio_offset = off; 204 204 pReqInt->AioCB.aio_nbytes = cbTransfer; … … 236 236 237 237 pReqInt->fFlush = true; 238 pReqInt->AioCB.aio_fildes = (int)hFile;238 pReqInt->AioCB.aio_fildes = RTFileToNative(hFile); 239 239 pReqInt->AioCB.aio_offset = 0; 240 240 pReqInt->AioCB.aio_nbytes = 0;
Note:
See TracChangeset
for help on using the changeset viewer.