(self)
| 157 | return status, value |
| 158 | |
| 159 | def rdtsc(self): |
| 160 | value = c_uint64() |
| 161 | status = self.__kb.KbReadTsc(byref(value)) |
| 162 | return status, value |
| 163 | |
| 164 | def rdtscp(self): |
| 165 | value = c_uint64() |
nothing calls this directly
no outgoing calls
no test coverage detected