MCPcopy Create free account
hub / github.com/HoShiMin/Kernel-Bridge / rdmsr

Method rdmsr

Python-Bridge/Python-Bridge.py:136–139  ·  view source on GitHub ↗
(self, index)

Source from the content-addressed store, hash-verified

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))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected