Changeset 14660 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Nov 26, 2008 6:20:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGF.cpp
r14299 r14660 78 78 #include <VBox/rem.h> 79 79 #include <VBox/em.h> 80 #include <VBox/hwaccm.h> 80 81 #include "DBGFInternal.h" 81 82 #include <VBox/vm.h> … … 89 90 #include <iprt/assert.h> 90 91 #include <iprt/stream.h> 92 #include <iprt/env.h> 91 93 92 94 … … 241 243 int cWait = 10; 242 244 # else 243 int cWait = 150; 245 int cWait = HWACCMIsEnabled(pVM) 246 && ( enmEvent == DBGFEVENT_ASSERTION_HYPER 247 || enmEvent == DBGFEVENT_FATAL_ERROR) 248 && !RTEnvExist("VBOX_DBGF_WAIT_FOR_ATTACH") 249 ? 10 250 : 150; 244 251 # endif 245 252 RTStrmPrintf(g_pStdErr, "DBGF: No debugger attached, waiting %d second%s for one to attach (event=%d)\n",
Note:
See TracChangeset
for help on using the changeset viewer.