Changeset 49634 in vbox for trunk/src/VBox/HostDrivers/Support/freebsd
- Timestamp:
- Nov 22, 2013 6:11:29 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
r47537 r49634 552 552 553 553 554 #ifdef SUPDRV_WITH_MSR_PROBER 555 556 int VBOXCALL supdrvOSMsrProberRead(uint32_t uMsr, RTCPUID idCpu, uint64_t *puValue) 557 { 558 NOREF(uMsr); NOREF(idCpu); NOREF(puValue); 559 return VERR_NOT_SUPPORTED; 560 } 561 562 563 int VBOXCALL supdrvOSMsrProberWrite(uint32_t uMsr, RTCPUID idCpu, uint64_t uValue) 564 { 565 NOREF(uMsr); NOREF(idCpu); NOREF(uValue); 566 return VERR_NOT_SUPPORTED; 567 } 568 569 570 int VBOXCALL supdrvOSMsrProberModify(RTCPUID idCpu, PSUPMSRPROBER pReq) 571 { 572 NOREF(idCpu); NOREF(pReq); 573 return VERR_NOT_SUPPORTED; 574 } 575 576 #endif /* SUPDRV_WITH_MSR_PROBER */ 577 578 554 579 SUPR0DECL(int) SUPR0Printf(const char *pszFormat, ...) 555 580 {
Note:
See TracChangeset
for help on using the changeset viewer.