Changeset 39083 in vbox for trunk/src/VBox/Runtime/generic/timer-generic.cpp
- Timestamp:
- Oct 22, 2011 12:28:46 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74515
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/timer-generic.cpp
r33540 r39083 231 231 if (!rtTimerIsValid(pTimer)) 232 232 return VERR_INVALID_HANDLE; 233 NOREF(u64NanoInterval); 233 234 return VERR_NOT_SUPPORTED; 234 235 } … … 236 237 237 238 238 static DECLCALLBACK(int) rtTimerThread(RTTHREAD Thread, void *pvUser)239 static DECLCALLBACK(int) rtTimerThread(RTTHREAD hThreadSelf, void *pvUser) 239 240 { 240 241 PRTTIMER pTimer = (PRTTIMER)pvUser; 242 NOREF(hThreadSelf); 241 243 242 244 /* … … 323 325 RTDECL(int) RTTimerRequestSystemGranularity(uint32_t u32Request, uint32_t *pu32Granted) 324 326 { 327 NOREF(u32Request); NOREF(pu32Granted); 325 328 return VERR_NOT_SUPPORTED; 326 329 } … … 330 333 RTDECL(int) RTTimerReleaseSystemGranularity(uint32_t u32Granted) 331 334 { 335 NOREF(u32Granted); 332 336 return VERR_NOT_SUPPORTED; 333 337 }
Note:
See TracChangeset
for help on using the changeset viewer.