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

Function mono_time_after

src/include/timer.h:91–95  ·  view source on GitHub ↗

Return true if t1 after t2 */

Source from the content-addressed store, hash-verified

89
90/* Return true if t1 after t2 */
91static inline int mono_time_after(const struct mono_time *t1,
92 const struct mono_time *t2)
93{
94 return mono_time_cmp(t1, t2) > 0;
95}
96
97/* Return true if t1 before t2. */
98static inline int mono_time_before(const struct mono_time *t1,

Callers 1

am335x_wait_for_regFunction · 0.85

Calls 1

mono_time_cmpFunction · 0.85

Tested by

no test coverage detected