Changeset 53565 in vbox for trunk/src/VBox/ValidationKit/utils/cpu
- Timestamp:
- Dec 18, 2014 2:52:16 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 97325
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/cpu/cidet-core.cpp
r53564 r53565 24 24 * terms and conditions of either the GPL or the CDDL or both. 25 25 */ 26 27 28 /*******************************************************************************29 * Header Files *30 *******************************************************************************/31 #include "cidet.h"32 33 #include <iprt/assert.h>34 #include <iprt/rand.h>35 #include <iprt/param.h>36 #include <iprt/string.h>37 #include <VBox/err.h>38 #ifdef DEBUG_bird39 # include <VBox/dis.h>40 # include <iprt/stream.h>41 #endif42 26 43 27 … … 61 45 /** @def CIDET_DPRINTF 62 46 * Debug printf. */ 63 #if def DEBUG_bird47 #if 1 //def DEBUG_bird 64 48 # define CIDET_DPRINTF(a) do { RTPrintf a; } while (0) 49 # define CIDET_DPRINTF_ENABLED 65 50 #else 66 51 # define CIDET_DPRINTF(a) do { } while (0) … … 71 56 #if defined(DOXYGEN_RUNNING) 72 57 # define CIDET_DEBUG_DISAS 1 58 #endif 59 60 61 /******************************************************************************* 62 * Header Files * 63 *******************************************************************************/ 64 #include "cidet.h" 65 66 #include <iprt/assert.h> 67 #include <iprt/rand.h> 68 #include <iprt/param.h> 69 #include <iprt/string.h> 70 #include <VBox/err.h> 71 #if defined(CIDET_DPRINTF_ENABLED) || defined(CIDET_DEBUG_DISAS) 72 # include <VBox/dis.h> 73 # include <iprt/stream.h> 73 74 #endif 74 75 … … 2065 2066 2066 2067 2068 #ifdef CIDET_DEBUG_DISAS 2067 2069 /** 2068 2070 * @callback_method_impl{FNDISREADBYTES} … … 2075 2077 return VINF_SUCCESS; 2076 2078 } 2079 #endif 2077 2080 2078 2081
Note:
See TracChangeset
for help on using the changeset viewer.