Changeset 25645 in vbox for trunk/src/VBox/Runtime/r3/linux
- Timestamp:
- Jan 5, 2010 9:29:31 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/linux/fileaio-linux.cpp
r22969 r25645 399 399 400 400 RTDECL(int) RTFileAioReqPrepareWrite(RTFILEAIOREQ hReq, RTFILE hFile, RTFOFF off, 401 void *pvBuf, size_t cbWrite, void *pvUser)401 void const *pvBuf, size_t cbWrite, void *pvUser) 402 402 { 403 403 return rtFileAioReqPrepareTransfer(hReq, hFile, LNXKAIO_IOCB_CMD_WRITE, 404 off, pvBuf, cbWrite, pvUser);404 off, (void *)pvBuf, cbWrite, pvUser); 405 405 } 406 406
Note:
See TracChangeset
for help on using the changeset viewer.