| 157 | struct timemono time_mono(void); |
| 158 | |
| 159 | static inline bool time_greater_(struct timespec a, struct timespec b) |
| 160 | { |
| 161 | if (TIME_CHECK(a).tv_sec > TIME_CHECK(b).tv_sec) |
| 162 | return true; |
| 163 | else if (a.tv_sec < b.tv_sec) |
| 164 | return false; |
| 165 | |
| 166 | return a.tv_nsec > b.tv_nsec; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * time_after - is a after b? |
no outgoing calls
no test coverage detected