Changeset 39910 in vbox for trunk/include/iprt
- Timestamp:
- Jan 30, 2012 4:05:58 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 75982
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mangling.h
r39877 r39910 1543 1543 # define RTTimerLRStart RT_MANGLER(RTTimerLRStart) 1544 1544 # define RTTimerLRStop RT_MANGLER(RTTimerLRStop) 1545 # define RTTimerLRChangeInterval RT_MANGLER(RTTimerLRChangeInterval) 1545 1546 # define RTTimerReleaseSystemGranularity RT_MANGLER(RTTimerReleaseSystemGranularity) /* r0drv */ 1546 1547 # define RTTimerRequestSystemGranularity RT_MANGLER(RTTimerRequestSystemGranularity) /* r0drv */ -
trunk/include/iprt/timer.h
r32572 r39910 355 355 RTDECL(int) RTTimerLRStop(RTTIMERLR hTimerLR); 356 356 357 /** 358 * Changes the interval of a low resolution timer. 359 * 360 * If the timer is active, the next tick will occure immediately just like with 361 * RTTimerLRStart() when u64First parameter is zero. 362 * 363 * @returns IPRT status code. 364 * @retval VERR_INVALID_HANDLE if pTimer isn't valid. 365 * @retval VERR_NOT_SUPPORTED if not supported. 366 * 367 * @param hTimerLR The low resolution timer to update. 368 * @param u64NanoInterval The interval between timer ticks specified in 369 * nanoseconds. This is rounded to the fit the 370 * system timer granularity. 371 * @remarks Callable from the timer callback. 372 */ 373 RTDECL(int) RTTimerLRChangeInterval(RTTIMERLR hTimerLR, uint64_t u64NanoInterval); 374 357 375 /** @} */ 358 376
Note:
See TracChangeset
for help on using the changeset viewer.