| 151 | |
| 152 | static uint64_t rdtsc_per_sec = 0; |
| 153 | static void __attribute__((constructor)) init_rdtsc_per_sec() |
| 154 | { |
| 155 | uint64_t before, after; |
| 156 | |
| 157 | before = rdtsc(); |
| 158 | usleep(USECS_PER_SEC); |
| 159 | after = rdtsc(); |
| 160 | |
| 161 | rdtsc_per_sec = after - before; |
| 162 | } |
| 163 | |
| 164 | double monotonic_seconds() |
| 165 | { |