Changeset 49634 in vbox for trunk/src/VBox/HostDrivers/Support/solaris
- Timestamp:
- Nov 22, 2013 6:11:29 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/solaris/SUPDrv-solaris.c
r48952 r49634 1189 1189 1190 1190 1191 #ifdef SUPDRV_WITH_MSR_PROBER 1192 1193 int VBOXCALL supdrvOSMsrProberRead(uint32_t uMsr, RTCPUID idCpu, uint64_t *puValue) 1194 { 1195 NOREF(uMsr); NOREF(idCpu); NOREF(puValue); 1196 return VERR_NOT_SUPPORTED; 1197 } 1198 1199 1200 int VBOXCALL supdrvOSMsrProberWrite(uint32_t uMsr, RTCPUID idCpu, uint64_t uValue) 1201 { 1202 NOREF(uMsr); NOREF(idCpu); NOREF(uValue); 1203 return VERR_NOT_SUPPORTED; 1204 } 1205 1206 1207 int VBOXCALL supdrvOSMsrProberModify(RTCPUID idCpu, PSUPMSRPROBER pReq) 1208 { 1209 NOREF(idCpu); NOREF(pReq); 1210 return VERR_NOT_SUPPORTED; 1211 } 1212 1213 #endif /* SUPDRV_WITH_MSR_PROBER */ 1214 1215 1191 1216 RTDECL(int) SUPR0Printf(const char *pszFormat, ...) 1192 1217 {
Note:
See TracChangeset
for help on using the changeset viewer.