* Read single counter(9). */
| 853 | * Read single counter(9). |
| 854 | */ |
| 855 | uint64_t |
| 856 | kread_counter(u_long addr) |
| 857 | { |
| 858 | |
| 859 | if (kvmd_init() < 0) |
| 860 | return (-1); |
| 861 | |
| 862 | return (kvm_counter_u64_fetch(kvmd, addr)); |
| 863 | } |
| 864 | |
| 865 | /* |
| 866 | * Read an array of N counters in kernel memory into array of N uint64_t's. |
nothing calls this directly
no test coverage detected