Changeset 35628 in vbox for trunk/src/VBox/Debugger/DBGCCmdHlp.cpp
- Timestamp:
- Jan 19, 2011 2:58:26 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69533
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGCCmdHlp.cpp
r35627 r35628 5 5 6 6 /* 7 * Copyright (C) 2006-201 0Oracle Corporation7 * Copyright (C) 2006-2011 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 22 22 #include <VBox/dbg.h> 23 23 #include <VBox/vmm/dbgf.h> 24 #include <VBox/vmm/vm.h>25 #include <VBox/vmm/vmm.h>26 #include <VBox/vmm/mm.h>27 24 #include <VBox/vmm/pgm.h> 28 #include <VBox/vmm/selm.h>29 #include <VBox/dis.h>30 25 #include <VBox/param.h> 31 26 #include <VBox/err.h> 32 27 #include <VBox/log.h> 33 28 34 #include <iprt/alloc.h>35 #include <iprt/alloca.h>36 #include <iprt/string.h>37 29 #include <iprt/assert.h> 38 30 #include <iprt/ctype.h> 31 #include <iprt/mem.h> 32 #include <iprt/string.h> 39 33 40 34 #include "DBGCInternal.h" … … 655 649 */ 656 650 pDbgc->pszScratch = pDbgc->pszScratch + cb + 1; 657 int rc = dbgc ProcessCommand(pDbgc, pszScratch, cb, false /* fNoExecute */);651 int rc = dbgcEvalCommand(pDbgc, pszScratch, cb, false /* fNoExecute */); 658 652 659 653 /* Restore the scratch state. */
Note:
See TracChangeset
for help on using the changeset viewer.