Changeset 19423 in vbox for trunk/include/VBox
- Timestamp:
- May 6, 2009 11:46:43 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vm.h
r19420 r19423 213 213 * requests in the emulation thread. 214 214 * This action flag stays asserted till DBGF clears it.*/ 215 #define VM_FF_DBGF RT_BIT_32(8) 215 #define VM_FF_DBGF_BIT 8 216 #define VM_FF_DBGF RT_BIT_32(VM_FF_DBGF_BIT) 216 217 /** This action forces the VM to service pending requests from other 217 218 * thread or requests which must be executed in another context. */ … … 220 221 #define VM_FF_TERMINATE RT_BIT_32(10) 221 222 /** Reset the VM. (postponed) */ 222 #define VM_FF_RESET RT_BIT_32(11) 223 #define VM_FF_RESET_BIT 11 224 #define VM_FF_RESET RT_BIT_32(VM_FF_RESET_BIT) 223 225 /** PGM needs to allocate handy pages. */ 224 226 #define VM_FF_PGM_NEED_HANDY_PAGES RT_BIT_32(18)
Note:
See TracChangeset
for help on using the changeset viewer.