MCPcopy Create free account
hub / github.com/LemonOSProject/LemonOS / operator<

Function operator<

Kernel/include/arch/x86_64/timer.h:12–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10} timeval_t;
11
12static inline bool operator<(timeval_t l, timeval_t r){
13 return (l.seconds < r.seconds) || (l.seconds == r.seconds && l.milliseconds < r.milliseconds);
14}
15
16typedef struct timespec {
17 time_t tv_sec;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected