Changeset 25528 in vbox for trunk/src/VBox/Additions/common
- Timestamp:
- Dec 20, 2009 11:24:59 PM (15 years ago)
- Location:
- trunk/src/VBox/Additions/common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/linux/Makefile
r25451 r25528 103 103 common/log/logcom.o \ 104 104 common/log/logformat.o \ 105 common/misc/RTAssertMsg1Weak.o \ 106 common/misc/RTAssertMsg2V.o \ 107 common/misc/RTAssertMsg2Weak.o \ 108 common/misc/RTAssertMsg2WeakV.o \ 109 common/misc/assert.o \ 105 110 common/string/strformat.o \ 106 111 common/string/strformatrt.o \ -
trunk/src/VBox/Additions/common/VBoxGuest/linux/files_vboxguest
r25421 r25528 97 97 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/udivdi3.c=>common/math/gcc/udivdi3.c \ 98 98 ${PATH_ROOT}/src/VBox/Runtime/common/math/gcc/umoddi3.c=>common/math/gcc/umoddi3.c \ 99 ${PATH_ROOT}/src/VBox/Runtime/common/misc/RTAssertMsg1Weak.cpp=>common/misc/RTAssertMsg1Weak.c \ 100 ${PATH_ROOT}/src/VBox/Runtime/common/misc/RTAssertMsg2V.cpp=>common/misc/RTAssertMsg2V.c \ 101 ${PATH_ROOT}/src/VBox/Runtime/common/misc/RTAssertMsg2Weak.cpp=>common/misc/RTAssertMsg2Weak.c \ 102 ${PATH_ROOT}/src/VBox/Runtime/common/misc/RTAssertMsg2WeakV.cpp=>common/misc/RTAssertMsg2WeakV.c \ 103 ${PATH_ROOT}/src/VBox/Runtime/common/misc/assert.cpp=>common/misc/assert.c \ 99 104 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformat.cpp=>common/string/strformat.c \ 100 105 ${PATH_ROOT}/src/VBox/Runtime/common/string/strformatrt.cpp=>common/string/strformatrt.c \ -
trunk/src/VBox/Additions/common/VBoxGuestLib/PhysHeap.cpp
r21211 r25528 56 56 57 57 #ifdef DUMPHEAP 58 # define VBGL_PH_dprintf(a) AssertMsg2a58 # define VBGL_PH_dprintf(a) RTAssertMsg2Weak a 59 59 #else 60 # define VBGL_PH_dprintf(a)60 # define VBGL_PH_dprintf(a) 61 61 #endif 62 62 -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.c
r21511 r25528 25 25 #ifdef RT_OS_LINUX 26 26 # include "VBoxCalls.h" 27 # define DbgPrint AssertMsg227 # define DbgPrint RTAssertMsg2Weak 28 28 #else 29 29 # include "VBoxCalls.h"
Note:
See TracChangeset
for help on using the changeset viewer.