Changeset 49843 in vbox
- Timestamp:
- Dec 9, 2013 1:51:55 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r49634 r49843 1193 1193 int VBOXCALL supdrvOSMsrProberRead(uint32_t uMsr, RTCPUID idCpu, uint64_t *puValue) 1194 1194 { 1195 /** @todo cmi_hdl_rdmsr can safely do this. there is also the on_trap() fun 1196 * for catching traps that could possibly be used directly. */ 1195 1197 NOREF(uMsr); NOREF(idCpu); NOREF(puValue); 1196 1198 return VERR_NOT_SUPPORTED; … … 1200 1202 int VBOXCALL supdrvOSMsrProberWrite(uint32_t uMsr, RTCPUID idCpu, uint64_t uValue) 1201 1203 { 1204 /** @todo cmi_hdl_wrmsr can safely do this. */ 1202 1205 NOREF(uMsr); NOREF(idCpu); NOREF(uValue); 1203 1206 return VERR_NOT_SUPPORTED;
Note:
See TracChangeset
for help on using the changeset viewer.