Changeset 35626 in vbox for trunk/include/VBox
- Timestamp:
- Jan 19, 2011 12:29:20 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 69528
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/dbg.h
r35625 r35626 101 101 /** Flat HC pointer. */ 102 102 DBGCVAR_TYPE_HC_FLAT, 103 /** Segmented HC pointer.104 * @todo drop this */105 DBGCVAR_TYPE_HC_FAR,106 103 /** Physical HC pointer. */ 107 104 DBGCVAR_TYPE_HC_PHYS, … … 122 119 #define DBGCVAR_ISPOINTER(enmType) ((enmType) >= DBGCVAR_TYPE_GC_FLAT && enmType <= DBGCVAR_TYPE_HC_PHYS) 123 120 /** Checks if the specified variable type is of a pointer persuasion. */ 124 #define DBGCVAR_IS_FAR_PTR(enmType) ((enmType) == DBGCVAR_TYPE_GC_FAR || (enmType) == DBGCVAR_TYPE_HC_FAR)121 #define DBGCVAR_IS_FAR_PTR(enmType) ((enmType) == DBGCVAR_TYPE_GC_FAR) 125 122 /** Checks if the specified variable type is of a pointer persuasion and of the guest context sort. */ 126 123 #define DBGCVAR_ISGCPOINTER(enmType) ((enmType) >= DBGCVAR_TYPE_GC_FLAT && (enmType) <= DBGCVAR_TYPE_GC_PHYS) … … 198 195 /** Flat HC Address. (DBGCVAR_TYPE_HC_FLAT) */ 199 196 void *pvHCFlat; 200 /** Far (16:32) HC Address. (DBGCVAR_TYPE_HC_FAR) */201 RTFAR32 HCFar;202 197 /** Physical GC Address. (DBGCVAR_TYPE_HC_PHYS) */ 203 198 RTHCPHYS HCPhys;
Note:
See TracChangeset
for help on using the changeset viewer.