Changeset 87829 in vbox
- Timestamp:
- Feb 22, 2021 4:24:22 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142891
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/Makefile.kmk
r87666 r87829 2772 2772 common/table/avlroogcptr.cpp \ 2773 2773 common/table/avlu32.cpp \ 2774 common/table/avlu64.cpp \2775 2774 common/table/avlou32.cpp \ 2776 2775 common/time/timesup.cpp \ -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r87792 r87829 54 54 #include <iprt/asm-amd64-x86.h> 55 55 #include <iprt/assert.h> 56 #include <iprt/avl.h>57 56 #include <iprt/crc.h> 58 57 #include <iprt/mp.h> … … 151 150 struct CLANG11WEIRDNOTHROW { PFNRT pfn; } g_VMMR0Deps[] = 152 151 { 153 { (PFNRT)RTAvlU64Destroy },154 { (PFNRT)RTAvlU64DoWithAll },155 { (PFNRT)RTAvlU64Get },156 { (PFNRT)RTAvlU64Insert },157 { (PFNRT)RTAvlU64Remove },158 152 { (PFNRT)RTCrc32 }, 159 153 { (PFNRT)RTOnce }, -
trunk/src/VBox/VMM/VMMR0/VMMR0.def
r87666 r87829 92 92 RTAssertMsg2Weak 93 93 RTAssertShouldPanic 94 RTAvlU64Destroy95 RTAvlU64DoWithAll96 RTAvlU64Get97 RTAvlU64Insert98 RTAvlU64Remove99 94 RTCrc32 100 95 RTOnceSlow
Note:
See TracChangeset
for help on using the changeset viewer.