- Timestamp:
- Dec 3, 2014 7:14:52 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/TMInternal.h
r53430 r53439 318 318 319 319 /** 320 * TM mode. 321 * The main modes of how TM abstracts time. 320 * TSC mode. 321 * 322 * The main modes of how TM implements the TSC clock (TMCLOCK_TSC). 323 * @todo r=bird: s/TMMODE/TMTSCMODE/g 322 324 */ 323 325 typedef enum TMMODE … … 330 332 TMMODE_DYNAMIC 331 333 } TMMODE; 334 AssertCompileSize(TMMODE, sizeof(uint32_t)); 332 335 333 336 … … 350 353 RTUINT offVM; 351 354 352 /** The current timekeeping mode of the VM. 353 * Config variable: Mode (string) */ 355 /** The current TSC mode of the VM. 356 * Config variable: Mode (string) 357 * @todo r=bird: s/enmMode/enmTscMode/g */ 354 358 TMMODE enmMode; 355 359 /** Whether the TSC is tied to the execution of code. … … 359 363 * Config variable: TSCNotTiedToHalt (bool) */ 360 364 bool fTSCNotTiedToHalt; 361 /** Alignment . */365 /** Alignment padding. */ 362 366 bool afAlignment0[2]; 363 367 /** The ID of the virtual CPU that normally runs the timers. */ … … 384 388 /** Virtual timer synchronous time catch-up active. */ 385 389 bool volatile fVirtualSyncCatchUp; 386 /** Alignment . */390 /** Alignment padding. */ 387 391 bool afAlignment1[1]; 388 392 /** WarpDrive percentage.
Note:
See TracChangeset
for help on using the changeset viewer.