#define enable_rdpmc() ({
unsigned long cr4;
asm volatile(
“push %raxnt”
“mov %%cr4, %0nt”
“or $(0x100), %0nt”
“mov %0, %%cr4nt”
“pop %rax”
: “=r” (cr4)
:
: “memory”); })
Iam trying to build this but it is pushing errors and iam debugging it is throwing signal illegal termination
New contributor
Vinitha Kampasati is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.