Changeset 54352 in vbox for trunk/include
- Timestamp:
- Feb 22, 2015 1:32:45 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 98440
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r54339 r54352 496 496 * Gets the TSC frequency of the calling CPU. 497 497 * 498 * @returns TSC frequency, UINT64_MAX on failure .498 * @returns TSC frequency, UINT64_MAX on failure (asserted). 499 499 * @param pGip The GIP pointer. 500 500 */ … … 502 502 { 503 503 if (RT_LIKELY( pGip 504 && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC 505 && pGip->u64CpuHz)) 504 && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC)) 506 505 { 507 506 switch (pGip->u32Mode) … … 523 522 * Gets the TSC frequency of the specified CPU. 524 523 * 525 * @returns TSC frequency, UINT64_MAX on failure .524 * @returns TSC frequency, UINT64_MAX on failure (asserted). 526 525 * @param pGip The GIP pointer. 527 526 * @param iCpuSet The CPU set index of the CPU in question. … … 530 529 { 531 530 if (RT_LIKELY( pGip 532 && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC 533 && pGip->u64CpuHz)) 531 && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC)) 534 532 { 535 533 switch (pGip->u32Mode) … … 554 552 555 553 554 #if 0 /* Not used anywhere. Unsure where this would be useful. */ 556 555 /** 557 556 * Checks if the provided TSC frequency is close enough to the computed TSC … … 580 579 return false; 581 580 } 581 #endif 582 582 583 583 #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
Note:
See TracChangeset
for help on using the changeset viewer.