MCPcopy Create free account
hub / github.com/coreboot/coreboot / mono_time_add_usecs

Function mono_time_add_usecs

src/include/timer.h:65–68  ·  view source on GitHub ↗

Add microseconds to an absolute time. */

Source from the content-addressed store, hash-verified

63
64/* Add microseconds to an absolute time. */
65static inline void mono_time_add_usecs(struct mono_time *mt, int64_t us)
66{
67 mt->microseconds += us;
68}
69
70/* Add milliseconds to an absolute time. */
71static inline void mono_time_add_msecs(struct mono_time *mt, int64_t ms)

Callers 6

timer_monotonic_getFunction · 0.85
timer_sched_callbackFunction · 0.85
timer_monotonic_getFunction · 0.85
timer_monotonic_getFunction · 0.85
mono_time_add_msecsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected