Changeset 6657 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Jan 31, 2008 2:11:49 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 27726
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/assert.cpp
r5999 r6657 38 38 39 39 40 #ifdef IN_GUEST_R0 40 #if defined(IN_GUEST_R0) && (defined(RT_OS_LINUX) || defined(RT_OS_WINDOWS)) 41 /* 42 * This is legacy that should be eliminated. OS specific code deals with 43 * R0 assertions now and it will do the backdoor printfs in addition to 44 * proper OS specific printfs and panics / BSODs / IPEs. 45 */ 41 46 #include <VBox/log.h> 42 47 … … 75 80 } 76 81 77 # if defined(RT_OS_LINUX) && defined(IN_MODULE)82 # if defined(RT_OS_LINUX) && defined(IN_MODULE) 78 83 /* 79 84 * When we build this in the Linux kernel module, we wish to make the 80 85 * symbols available to other modules as well. 81 86 */ 82 # include "the-linux-kernel.h"87 # include "the-linux-kernel.h" 83 88 EXPORT_SYMBOL(AssertMsg1); 84 89 EXPORT_SYMBOL(AssertMsg2); 85 # endif90 # endif 86 91 87 92 #elif defined(IN_RING0)
Note:
See TracChangeset
for help on using the changeset viewer.