Changeset 53441 in vbox for trunk/include/VBox
- Timestamp:
- Dec 4, 2014 11:06:26 AM (10 years ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r53435 r53441 1529 1529 * @param pGip Pointer to the GIP. 1530 1530 * @param puTsc Pointer to a valid TSC value before the TSC delta has been applied. 1531 * @param idApic The APIC ID of the CPU @c uTsc corresponds to.1531 * @param idApic The APIC ID of the CPU @c puTsc corresponds to. 1532 1532 * @param fDeltaApplied Where to store whether the TSC delta was succesfully 1533 1533 * applied or not (optional, can be NULL). -
trunk/include/VBox/sup.mac
r53436 r53441 130 130 %macro SUPTscDeltaApply 1 131 131 ; Check if we have a valid TSC-delta, i.e. != INT64_MAX. 132 cmp dword [%1 + SUPGIPCPU.i64TSCDelta + 4], 0xffffffff132 cmp dword [%1 + SUPGIPCPU.i64TSCDelta], 0xffffffff 133 133 jne %%valid_delta 134 cmp dword [%1 + SUPGIPCPU.i64TSCDelta ], 0x7fffffff134 cmp dword [%1 + SUPGIPCPU.i64TSCDelta + 4], 0x7fffffff 135 135 je %%done 136 136 %%valid_delta:
Note:
See TracChangeset
for help on using the changeset viewer.