#include /** Returns the current hart id */ static inline u64 r_mhartid() { u64 x; asm volatile("csrr %0, mhartid" : "=r"(x)); return x; }