| 139 | } |
| 140 | |
| 141 | static uint64_t GetVoluntaryContextSwitches() { |
| 142 | struct rusage ru; |
| 143 | CHECK_ERR(getrusage(RUSAGE_SELF, &ru)); |
| 144 | return ru.ru_nvcsw; |
| 145 | } |
| 146 | |
| 147 | static uint64_t GetInVoluntaryContextSwitches() { |
| 148 | struct rusage ru; |
no outgoing calls
no test coverage detected