Changeset 32504 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Sep 15, 2010 10:12:38 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 65880
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r32417 r32504 50 50 #include <iprt/crc.h> 51 51 #include <iprt/string.h> 52 #include <iprt/timer.h> 52 53 #if defined(RT_OS_DARWIN) || defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD) 53 54 # include <iprt/rand.h> … … 270 271 { "RTThreadPreemptRestore", (void *)RTThreadPreemptRestore }, 271 272 { "RTThreadIsInInterrupt", (void *)RTThreadIsInInterrupt }, 273 { "RTTimerCreate", (void *)RTTimerCreate }, 274 { "RTTimerCreateEx", (void *)RTTimerCreateEx }, 275 { "RTTimerDestroy", (void *)RTTimerDestroy }, 276 { "RTTimerStart", (void *)RTTimerStart }, 277 { "RTTimerStop", (void *)RTTimerStop }, 278 { "RTTimerGetSystemGranularity", (void *)RTTimerGetSystemGranularity }, 279 { "RTTimerRequestSystemGranularity", (void *)RTTimerRequestSystemGranularity }, 280 { "RTTimerReleaseSystemGranularity", (void *)RTTimerReleaseSystemGranularity }, 281 { "RTTimerCanDoHighResolution", (void *)RTTimerCanDoHighResolution }, 272 282 273 283 { "RTLogDefaultInstance", (void *)RTLogDefaultInstance }, -
trunk/src/VBox/HostDrivers/Support/SUPDrvIOC.h
r32358 r32504 193 193 * - Nothing. 194 194 */ 195 #define SUPDRV_IOC_VERSION 0x0015000 1195 #define SUPDRV_IOC_VERSION 0x00150002 196 196 197 197 /** SUP_IOCTL_COOKIE. */ -
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r32036 r32504 269 269 CookieReq.u.In.u32ReqVersion = SUPDRV_IOC_VERSION; 270 270 const uint32_t uMinVersion = (SUPDRV_IOC_VERSION & 0xffff0000) == 0x00150000 271 ? 0x0015000 1271 ? 0x00150002 272 272 : SUPDRV_IOC_VERSION & 0xffff0000; 273 273 CookieReq.u.In.u32MinVersion = uMinVersion; … … 454 454 { "RTThreadSleep", 0xefef0039 }, 455 455 { "RTThreadYield", 0xefef003a }, 456 { "RTTimerCreate", 0xefef003a }, 457 { "RTTimerCreateEx", 0xefef003a }, 458 { "RTTimerDestroy", 0xefef003a }, 459 { "RTTimerStart", 0xefef003a }, 460 { "RTTimerStop", 0xefef003a }, 461 { "RTTimerGetSystemGranularity", 0xefef003a }, 462 { "RTTimerRequestSystemGranularity", 0xefef003a }, 463 { "RTTimerReleaseSystemGranularity", 0xefef003a }, 464 { "RTTimerCanDoHighResolution", 0xefef003a }, 456 465 { "RTLogDefaultInstance", 0xefef003b }, 457 466 { "RTLogRelDefaultInstance", 0xefef003c }, -
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r32256 r32504 130 130 generic/RTLogWriteStdOut-stub-generic.o \ 131 131 generic/RTLogWriteUser-generic.o \ 132 generic/RTTimerCreate-generic.o \ 132 133 generic/uuid-generic.o \ 133 134 VBox/log-vbox.o -
trunk/src/VBox/HostDrivers/Support/linux/files_vboxdrv
r31847 r32504 128 128 ${PATH_ROOT}/src/VBox/Runtime/generic/RTLogWriteStdOut-stub-generic.cpp=>generic/RTLogWriteStdOut-stub-generic.c \ 129 129 ${PATH_ROOT}/src/VBox/Runtime/generic/RTLogWriteUser-generic.cpp=>generic/RTLogWriteUser-generic.c \ 130 ${PATH_ROOT}/src/VBox/Runtime/generic/RTTimerCreate-generic.cpp=>generic/RTTimerCreate-generic.c \ 130 131 ${PATH_ROOT}/src/VBox/Runtime/generic/uuid-generic.cpp=>generic/uuid-generic.c \ 131 132 ${PATH_ROOT}/src/VBox/Runtime/r0drv/alloc-r0drv.cpp=>r0drv/alloc-r0drv.c \
Note:
See TracChangeset
for help on using the changeset viewer.