Changeset 40800 in vbox
- Timestamp:
- Apr 6, 2012 4:54:17 PM (13 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r40798 r40800 205 205 { "SUPR0GetPagingMode", (void *)SUPR0GetPagingMode }, 206 206 { "SUPR0EnableVTx", (void *)SUPR0EnableVTx }, 207 { "SUPR0TracerRegisterImpl", (void *)SUPR0TracerRegisterImpl }, 208 { "SUPR0TracerDeregisterImpl", (void *)SUPR0TracerDeregisterImpl }, 209 { "SUPR0TracerRegisterDrv", (void *)SUPR0TracerRegisterDrv }, 210 { "SUPR0TracerDeregisterDrv", (void *)SUPR0TracerDeregisterDrv }, 207 211 { "SUPR0TracerRegisterModule", (void *)SUPR0TracerRegisterModule }, 212 { "SUPR0TracerFireProbe", (void *)SUPR0TracerFireProbe }, 208 213 { "SUPGetGIP", (void *)SUPGetGIP }, 209 214 { "g_pSUPGlobalInfoPage", (void *)&g_pSUPGlobalInfoPage }, /* SED: DATA */ … … 216 221 { "RTMemDupExTag", (void *)RTMemDupExTag }, 217 222 { "RTMemReallocTag", (void *)RTMemReallocTag }, 223 { "RTMemAllocExTag", (void *)RTMemAllocExTag }, 224 { "RTMemFreeEx", (void *)RTMemFreeEx }, 218 225 { "RTR0MemObjAllocLowTag", (void *)RTR0MemObjAllocLowTag }, 219 226 { "RTR0MemObjAllocPageTag", (void *)RTR0MemObjAllocPageTag }, -
trunk/src/VBox/HostDrivers/Support/freebsd/Makefile
r40777 r40800 6 6 # 7 7 # 8 # Copyright (C) 2006-20 07Oracle Corporation8 # Copyright (C) 2006-2012 Oracle Corporation 9 9 # 10 10 # This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/HostDrivers/Support/linux/Makefile
r40798 r40800 1 # $ Revision$1 # $Id$ 2 2 ## @file 3 3 # Makefile for the VirtualBox Linux Host Driver. … … 6 6 # 7 7 # 8 # Copyright (C) 2006-201 0Oracle Corporation8 # Copyright (C) 2006-2012 Oracle Corporation 9 9 # 10 10 # This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/src/VBox/Runtime/Makefile.kmk
r40790 r40800 1603 1603 common/checksum/ipv4.cpp \ 1604 1604 common/checksum/ipv6.cpp \ 1605 common/err/RTErrConvertToErrno.cpp \ 1606 common/err/RTErrConvertFromErrno.cpp \ 1605 1607 common/log/log.cpp \ 1606 1608 common/log/logellipsis.cpp \ … … 1688 1690 common/misc/thread.cpp \ 1689 1691 common/string/strpbrk.cpp \ 1690 common/err/RTErrConvertToErrno.cpp \1691 common/err/RTErrConvertFromErrno.cpp \1692 1692 generic/RTAssertShouldPanic-generic.cpp \ 1693 1693 generic/RTLogWriteStdOut-stub-generic.cpp \ … … 1757 1757 1758 1758 RuntimeR0Drv_SOURCES.darwin = \ 1759 common/err/RTErrConvertFromErrno.cpp \1760 1759 common/misc/thread.cpp \ 1761 1760 common/string/memchr.asm \ … … 1852 1851 1853 1852 RuntimeR0Drv_SOURCES.freebsd = \ 1854 common/err/RTErrConvertFromErrno.cpp \1855 common/err/RTErrConvertToErrno.cpp \1856 1853 common/misc/thread.cpp \ 1857 1854 common/string/memchr.asm \ … … 1887 1884 1888 1885 RuntimeR0Drv_SOURCES.solaris = \ 1889 common/err/RTErrConvertFromErrno.cpp \1890 common/err/RTErrConvertToErrno.cpp \1891 1886 common/misc/thread.cpp \ 1892 1887 common/string/memchr.asm \
Note:
See TracChangeset
for help on using the changeset viewer.