Changeset 70340 in vbox
- Timestamp:
- Dec 26, 2017 2:41:01 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119940
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/generic/RTAssertShouldPanic-generic.cpp
r69111 r70340 32 32 #include "internal/iprt.h" 33 33 34 #ifdef IN_RING 35 # if 0 36 # include <iprt/asm.h> 37 # include <iprt/asm-amd64-x86.h> 38 # endif 39 #endif 40 34 41 35 42 RTDECL(bool) RTAssertShouldPanic(void) 36 43 { 44 #ifdef IN_RING0 45 # if 0 /* this can be useful when debugging guests. */ 46 ASMIntDisable(); 47 ASMHalt(); 48 # endif 49 #endif 37 50 #if 0 /* Enable this to not panic on assertions. (Make sure this code is used!) */ 38 51 return false;
Note:
See TracChangeset
for help on using the changeset viewer.