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

Function mono_time_add_msecs

src/include/timer.h:71–74  ·  view source on GitHub ↗

Add milliseconds to an absolute time. */

Source from the content-addressed store, hash-verified

69
70/* Add milliseconds to an absolute time. */
71static inline void mono_time_add_msecs(struct mono_time *mt, int64_t ms)
72{
73 mono_time_add_usecs(mt, ms * USECS_PER_MSEC);
74}
75
76/* Compare two absolute times: Return -1, 0, or 1 if t1 is <, =, or > t2,
77 * respectively. */

Callers 1

am335x_wait_for_regFunction · 0.85

Calls 1

mono_time_add_usecsFunction · 0.85

Tested by

no test coverage detected