Tag Archives: code

C# is killing me

Blame for this: static inline uint64_t get_ts() { uint32_t low, high; asm(“rdtsc” : “=a” (low), “=d” (high)); ts = high; return ((uint64_t)high << 32) + low; } /* From kernel [...]
Posted in Blog | Tagged | 2 Comments