| 145 | } |
| 146 | |
| 147 | static uint64_t GetInVoluntaryContextSwitches() { |
| 148 | struct rusage ru; |
| 149 | CHECK_ERR(getrusage(RUSAGE_SELF, &ru)); |
| 150 | return ru.ru_nivcsw; |
| 151 | } |
| 152 | |
| 153 | static int32_t GetSchedulingPriority() { |
| 154 | const int saved_errno = errno; |
no outgoing calls
no test coverage detected