| 147 | |
| 148 | |
| 149 | static inline unsigned long long get_tick_count() |
| 150 | { |
| 151 | uint32_t lo, hi; |
| 152 | __asm__ __volatile__ ( |
| 153 | "rdtscp" : "=a"(lo), "=d"(hi) |
| 154 | ); |
| 155 | return ((unsigned long long)lo) | (((unsigned long long)hi) << 32); |
| 156 | } |
| 157 | |
| 158 | struct rpchook_connagent_head_t |
| 159 | { |
nothing calls this directly
no outgoing calls
no test coverage detected