Changeset 25645 in vbox for trunk/src/VBox/Runtime/r3/solaris
- Timestamp:
- Jan 5, 2010 9:29:31 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56352
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/solaris/fileaio-solaris.cpp
r25629 r25645 191 191 192 192 RTDECL(int) RTFileAioReqPrepareWrite(RTFILEAIOREQ hReq, RTFILE hFile, RTFOFF off, 193 void *pvBuf, size_t cbWrite, void *pvUser)193 void const *pvBuf, size_t cbWrite, void *pvUser) 194 194 { 195 195 return rtFileAioReqPrepareTransfer(hReq, hFile, LIO_WRITE, 196 off, pvBuf, cbWrite, pvUser);196 off, (void *)pvBuf, cbWrite, pvUser); 197 197 } 198 198
Note:
See TracChangeset
for help on using the changeset viewer.