Changeset 35298 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Dec 22, 2010 12:35:46 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69147
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMGC/VMMGCDeps.cpp
r31847 r35298 19 19 #include <iprt/string.h> 20 20 21 #if defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD) 22 RT_C_DECLS_BEGIN 23 extern uint64_t __udivdi3(uint64_t, uint64_t); 24 extern uint64_t __umoddi3(uint64_t, uint64_t); 25 RT_C_DECLS_END 26 #endif // RT_OS_SOLARIS || RT_OS_FREEBSD 27 21 28 PFNRT g_VMMGCDeps[] = 22 29 { … … 25 32 (PFNRT)memchr, 26 33 (PFNRT)memcmp, 27 (PFNRT)RTCrc32 34 (PFNRT)RTCrc32, 35 #if defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD) 36 (PFNRT)__udivdi3, 37 (PFNRT)__umoddi3, 38 #endif // RT_OS_SOLARIS || RT_OS_FREEBSD 39 NULL 28 40 }; 29 41 -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r33935 r35298 61 61 VMMR0DECL(int) ModuleInit(void); 62 62 VMMR0DECL(void) ModuleTerm(void); 63 64 #if defined(RT_ARCH_X86) && (defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD)) 65 extern uint64_t __udivdi3(uint64_t, uint64_t); 66 extern uint64_t __umoddi3(uint64_t, uint64_t); 67 #endif // RT_ARCH_X86 && (RT_OS_SOLARIS || RT_OS_FREEBSD) 63 68 RT_C_DECLS_END 64 69 … … 72 77 { 73 78 (PFNRT)RTCrc32, 74 (PFNRT)RTOnce 79 (PFNRT)RTOnce, 80 #if defined(RT_ARCH_X86) && (defined(RT_OS_SOLARIS) || defined(RT_OS_FREEBSD)) 81 (PFNRT)__udivdi3, 82 (PFNRT)__umoddi3, 83 #endif // RT_ARCH_X86 && (RT_OS_SOLARIS || RT_OS_FREEBSD) 84 NULL 75 85 }; 76 86
Note:
See TracChangeset
for help on using the changeset viewer.