| 132 | } |
| 133 | |
| 134 | static void rdtsc_prof_init(struct rdtsc_prof *p, const char *name) |
| 135 | { |
| 136 | p->clk_min = (uint64_t)(-1LL); |
| 137 | p->clk_max = 0; |
| 138 | p->clk_avg = 0; |
| 139 | p->clk_avgc = 0; |
| 140 | p->name = name; |
| 141 | } |
| 142 | |
| 143 | static inline void rdtsc_prof_start(struct rdtsc_prof *p) |
| 144 | { |
no outgoing calls
no test coverage detected