VirtualBox

Changeset 54352 in vbox for trunk/include


Ignore:
Timestamp:
Feb 22, 2015 1:32:45 AM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
98440
Message:

SUPDrv,TM: Overhauled the CPU/TSC frequency a little, making it possible to run it early and skpping the 200 ms variant for the invariant tsc by executing the refinement timer several times.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/sup.h

    r54339 r54352  
    496496 * Gets the TSC frequency of the calling CPU.
    497497 *
    498  * @returns TSC frequency, UINT64_MAX on failure.
     498 * @returns TSC frequency, UINT64_MAX on failure (asserted).
    499499 * @param   pGip        The GIP pointer.
    500500 */
     
    502502{
    503503    if (RT_LIKELY(   pGip
    504                   && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC
    505                   && pGip->u64CpuHz))
     504                  && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC))
    506505    {
    507506        switch (pGip->u32Mode)
     
    523522 * Gets the TSC frequency of the specified CPU.
    524523 *
    525  * @returns TSC frequency, UINT64_MAX on failure.
     524 * @returns TSC frequency, UINT64_MAX on failure (asserted).
    526525 * @param   pGip        The GIP pointer.
    527526 * @param   iCpuSet     The CPU set index of the CPU in question.
     
    530529{
    531530    if (RT_LIKELY(   pGip
    532                   && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC
    533                   && pGip->u64CpuHz))
     531                  && pGip->u32Magic == SUPGLOBALINFOPAGE_MAGIC))
    534532    {
    535533        switch (pGip->u32Mode)
     
    554552
    555553
     554#if 0 /* Not used anywhere.  Unsure where this would be useful. */
    556555/**
    557556 * Checks if the provided TSC frequency is close enough to the computed TSC
     
    580579    return false;
    581580}
     581#endif
    582582
    583583#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette