* The value for the TSC_AUX MSR and rdtscp/rdpid on the invoking CPU. * * Caller should prevent CPU migration. */
| 632 | * Caller should prevent CPU migration. |
| 633 | */ |
| 634 | u_int |
| 635 | cpu_auxmsr(void) |
| 636 | { |
| 637 | KASSERT((read_eflags() & PSL_I) == 0, ("context switch possible")); |
| 638 | return (PCPU_GET(cpuid)); |
| 639 | } |
| 640 | |
| 641 | extern int elf32_nxstack; |
| 642 |
no test coverage detected