- Timestamp:
- Feb 13, 2015 2:28:19 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98244
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/timer.h
r42333 r54188 194 194 * @retval VERR_INVALID_HANDLE if pTimer isn't valid. 195 195 * @retval VERR_NOT_SUPPORTED if not supported. 196 * @retval VERR_INVALID_STATE if not a periodic timer. 196 197 * 197 198 * @param pTimer The timer to activate. -
trunk/src/VBox/Runtime/r0drv/linux/timer-r0drv-linux.c
r53019 r54188 1353 1353 AssertReturn(pTimer->u32Magic == RTTIMER_MAGIC, VERR_INVALID_HANDLE); 1354 1354 AssertReturn(u64NanoInterval, VERR_INVALID_PARAMETER); 1355 AssertReturn(u64NanoInterval < UINT64_MAX / 8, VERR_INVALID_PARAMETER); 1356 AssertReturn(pTimer->u64NanoInterval, VERR_INVALID_STATE); 1355 1357 RTTIMERLNX_LOG(("change %p %llu\n", pTimer, u64NanoInterval)); 1356 1358
Note:
See TracChangeset
for help on using the changeset viewer.