| 966 | |
| 967 | #if defined(__OpenBSD__) && defined(__i386__) |
| 968 | static __inline u_int64_t |
| 969 | rdtsc(void) |
| 970 | { |
| 971 | u_int64_t rv; |
| 972 | __asm __volatile(".byte 0x0f, 0x31" : "=A" (rv)); |
| 973 | return (rv); |
| 974 | } |
| 975 | #endif /* __OpenBSD__ && __i386__ */ |
| 976 | |
| 977 | u_int64_t |
no outgoing calls
no test coverage detected