Changeset 4882 in vbox
- Timestamp:
- Sep 18, 2007 7:37:44 AM (17 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r4830 r4882 469 469 { 470 470 if (RT_LIKELY(uOperation == SUP_VMMR0_DO_RAW_RUN)) 471 return suplibO SIOCtlFast(SUP_IOCTL_FAST_DO_RAW_RUN);471 return suplibOsIOCtlFast(SUP_IOCTL_FAST_DO_RAW_RUN); 472 472 if (RT_LIKELY(uOperation == SUP_VMMR0_DO_HWACC_RUN)) 473 return suplibO SIOCtlFast(SUP_IOCTL_FAST_DO_HWACC_RUN);473 return suplibOsIOCtlFast(SUP_IOCTL_FAST_DO_HWACC_RUN); 474 474 if (RT_LIKELY(uOperation == SUP_VMMR0_DO_NOP)) 475 return suplibO SIOCtlFast(SUP_IOCTL_FAST_DO_NOP);475 return suplibOsIOCtlFast(SUP_IOCTL_FAST_DO_NOP); 476 476 477 477 AssertMsgFailed(("%#x\n", uOperation)); … … 559 559 { 560 560 Assert(!pvArg); 561 return suplibO SIOCtlFast(SUP_IOCTL_FAST_DO_RAW_RUN);561 return suplibOsIOCtlFast(SUP_IOCTL_FAST_DO_RAW_RUN); 562 562 } 563 563 if (RT_LIKELY(uOperation == SUP_VMMR0_DO_HWACC_RUN)) 564 564 { 565 565 Assert(!pvArg); 566 return suplibO SIOCtlFast(SUP_IOCTL_FAST_DO_HWACC_RUN);566 return suplibOsIOCtlFast(SUP_IOCTL_FAST_DO_HWACC_RUN); 567 567 } 568 568 if (RT_LIKELY(uOperation == SUP_VMMR0_DO_NOP)) 569 569 { 570 570 Assert(!pvArg); 571 return suplibO SIOCtlFast(SUP_IOCTL_FAST_DO_NOP);571 return suplibOsIOCtlFast(SUP_IOCTL_FAST_DO_NOP); 572 572 } 573 573 return SUPCallVMMR0Ex(pVMR0, uOperation, (uintptr_t)pvArg, NULL); -
trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h
r4811 r4882 16 16 */ 17 17 18 #ifndef __ SupInternal_h__19 #define __ SupInternal_h__18 #ifndef ___SupInternal_h___ 19 #define ___SupInternal_h___ 20 20 21 21 #include <VBox/cdefs.h> … … 45 45 int suplibOsTerm(void); 46 46 int suplibOsIOCtl(uintptr_t uFunction, void *pvReq, size_t cbReq); 47 int suplibO SIOCtlFast(uintptr_t uFunction);47 int suplibOsIOCtlFast(uintptr_t uFunction); 48 48 int suplibOsPageAlloc(size_t cPages, void **ppvPages); 49 49 int suplibOsPageFree(void *pvPages, size_t cPages); -
trunk/src/VBox/HostDrivers/Support/darwin/SUPLib-darwin.cpp
r4873 r4882 205 205 206 206 207 int suplibO SIOCtlFast(uintptr_t uFunction)207 int suplibOsIOCtlFast(uintptr_t uFunction) 208 208 { 209 209 int rc = ioctl(g_hDevice, uFunction, NULL); -
trunk/src/VBox/HostDrivers/Support/freebsd/SUPLib-freebsd.cpp
r4872 r4882 130 130 131 131 132 int suplibO SIOCtlFast(uintptr_t uFunction)132 int suplibOsIOCtlFast(uintptr_t uFunction) 133 133 { 134 134 int rc = ioctl(g_hDevice, uFunction, NULL); -
trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp
r4811 r4882 239 239 * @param uFunction The operation. 240 240 */ 241 int suplibO SIOCtlFast(uintptr_t uFunction)241 int suplibOsIOCtlFast(uintptr_t uFunction) 242 242 { 243 243 int rc = ioctl(g_hDevice, uFunction, NULL); -
trunk/src/VBox/HostDrivers/Support/os2/SUPLib-os2.cpp
r4828 r4882 144 144 145 145 146 int suplibO SIOCtlFast(uintptr_t uFunction)146 int suplibOsIOCtlFast(uintptr_t uFunction) 147 147 { 148 148 int32_t rcRet = VERR_INTERNAL_ERROR; -
trunk/src/VBox/HostDrivers/Support/solaris/SUPLib-solaris.cpp
r4873 r4882 135 135 136 136 137 int suplibO SIOCtlFast(uintptr_t uFunction)137 int suplibOsIOCtlFast(uintptr_t uFunction) 138 138 { 139 139 int rc = ioctl(g_hDevice, uFunction, NULL); -
trunk/src/VBox/HostDrivers/Support/win/SUPLib-win.cpp
r4811 r4882 624 624 625 625 626 int suplibO SIOCtlFast(uintptr_t uFunction)626 int suplibOsIOCtlFast(uintptr_t uFunction) 627 627 { 628 628 /*
Note:
See TracChangeset
for help on using the changeset viewer.