(self, index)
| 152 | return status, info |
| 153 | |
| 154 | def rdpmc(self, index): |
| 155 | value = c_uint64() |
| 156 | status = self.__kb.KbReadPmc(c_uint(index), byref(value)) |
| 157 | return status, value |
| 158 | |
| 159 | def rdtsc(self): |
| 160 | value = c_uint64() |
nothing calls this directly
no outgoing calls
no test coverage detected