Changeset 12578 in vbox for trunk/include/VBox
- Timestamp:
- Sep 18, 2008 2:58:57 PM (16 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/cpum.h
r11946 r12578 1068 1068 CPUMDECL(void) CPUMDeactivateGuestFPUState(PVM pVM); 1069 1069 1070 /** 1071 * Checks if the guest debug state is active 1072 * 1073 * @returns boolean 1074 * @param pVM VM handle. 1075 */ 1076 CPUMDECL(bool) CPUMIsGuestDebugStateActive(PVM pVM); 1077 1078 /** 1079 * Mark the guest's debug state as inactive 1080 * 1081 * @returns boolean 1082 * @param pVM VM handle. 1083 */ 1084 CPUMDECL(void) CPUMDeactivateGuestDebugtate(PVM pVM); 1085 1070 1086 1071 1087 /** … … 1267 1283 CPUMR0DECL(int) CPUMR0SaveGuestFPU(PVM pVM, PCPUMCTX pCtx); 1268 1284 1285 /** 1286 * Save guest debug state 1287 * 1288 * @returns VBox status code. 1289 * @param pVM VM handle. 1290 * @param pCtx CPU context 1291 * @param fDR6 Include DR6 or not 1292 */ 1293 CPUMR0DECL(int) CPUMR0SaveGuestDebugState(PVM pVM, PCPUMCTX pCtx, bool fDR6); 1294 1295 /** 1296 * Lazily sync in the debug state 1297 * 1298 * @returns VBox status code. 1299 * @param pVM VM handle. 1300 * @param pCtx CPU context 1301 * @param fDR6 Include DR6 or not 1302 */ 1303 CPUMR0DECL(int) CPUMR0LoadGuestDebugState(PVM pVM, PCPUMCTX pCtx, bool fDR6); 1304 1269 1305 /** @} */ 1270 1306 #endif -
trunk/include/VBox/x86.h
r12225 r12578 721 721 #define X86_DR7_ENABLED_MASK (RT_BIT(0) | RT_BIT(1) | RT_BIT(2) | RT_BIT(3) | RT_BIT(4) | RT_BIT(5) | RT_BIT(6) | RT_BIT(7)) 722 722 723 /** Value of DR7 after powerup/reset. */ 724 #define X86_DR7_INIT_VAL 0x400 723 725 /** @} */ 724 726
Note:
See TracChangeset
for help on using the changeset viewer.