Changeset 39083 in vbox for trunk/src/VBox/Runtime/common/vfs
- Timestamp:
- Oct 22, 2011 12:28:46 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74515
- Location:
- trunk/src/VBox/Runtime/common/vfs
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r37596 r39083 1502 1502 RTDECL(int) RTVfsUtilDummyPollOne(uint32_t fEvents, RTMSINTERVAL cMillies, bool fIntr, uint32_t *pfRetEvents) 1503 1503 { 1504 NOREF(fEvents); 1504 1505 int rc; 1505 1506 if (fIntr) -
trunk/src/VBox/Runtime/common/vfs/vfsmemory.cpp
r39032 r39083 548 548 uint32_t *pfRetEvents) 549 549 { 550 NOREF(pvThis); 550 551 int rc; 551 552 if (fEvents != RTPOLL_EVT_ERROR) -
trunk/src/VBox/Runtime/common/vfs/vfsstdfile.cpp
r39032 r39083 253 253 uint32_t *pfRetEvents) 254 254 { 255 NOREF(pvThis); 255 256 int rc; 256 257 if (fEvents != RTPOLL_EVT_ERROR) … … 347 348 return RTFileSetOwner(pThis->hFile, uid, gid); 348 349 #else 350 NOREF(pvThis); NOREF(uid); NOREF(gid); 349 351 return VERR_NOT_IMPLEMENTED; 350 352 #endif
Note:
See TracChangeset
for help on using the changeset viewer.