2 * Tests for prctl(PR_GET_TSC, ...) / prctl(PR_SET_TSC, ...)
4 * Tests if the control register is updated correctly
7 * Warning: this test will cause a very high load for a few seconds
19 #include <sys/prctl.h>
20 #include <linux/prctl.h>
22 /* Get/set the process' ability to use the timestamp counter instruction */
26 # define PR_TSC_ENABLE 1 /* allow the use of the timestamp counter */
27 # define PR_TSC_SIGSEGV 2 /* throw a SIGSEGV instead of reading the TSC */
32 /* We cannot use "=A", since this would use %rax on x86_64 */
33 __asm__ __volatile__ ("rdtsc" : "=a" (lo), "=d" (hi));
34 return (uint64_t)hi << 32 | lo;
37 void sigsegv_expect(int sig)
44 if (prctl(PR_SET_TSC, PR_TSC_SIGSEGV) < 0)
49 signal(SIGSEGV, sigsegv_expect);
52 fprintf(stderr, "FATAL ERROR, rdtsc() succeeded while disabled\n");
57 void sigsegv_fail(int sig)
59 fprintf(stderr, "FATAL ERROR, rdtsc() failed while enabled\n");
65 if (prctl(PR_SET_TSC, PR_TSC_ENABLE) < 0)
70 signal(SIGSEGV, sigsegv_fail);
76 int main(int argc, char **argv)
80 fprintf(stderr, "[No further output means we're allright]\n");
82 for (i=0; i<n_tasks; i++)
91 for (i=0; i<n_tasks; i++)