(self, index)
| 134 | return self.__kb.KbHlt() |
| 135 | |
| 136 | def rdmsr(self, index): |
| 137 | value = c_uint64() |
| 138 | status = self.__kb.KbReadMsr(c_uint(index), byref(value)) |
| 139 | return status, value |
| 140 | |
| 141 | def wrmsr(self, index, value): |
| 142 | return self.__kb.KbWriteMsr(c_uint(index), c_uint64(value)) |
nothing calls this directly
no outgoing calls
no test coverage detected