VirtualBox

Changeset 82334 in vbox for trunk/src/VBox/Devices/PC


Ignore:
Timestamp:
Dec 3, 2019 1:04:34 AM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
135158
Message:

DevRTC: don't use '/' in timer descriptions as TM feeds them to STAM. bugref:9218

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/PC/DevRTC.cpp

    r82329 r82334  
    11591159    /* Periodic timer. */
    11601160    rc = PDMDevHlpTimerCreate(pDevIns, TMCLOCK_VIRTUAL_SYNC, rtcTimerPeriodic, pThis,
    1161                               TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "MC146818 RTC/CMOS - Periodic", &pThis->hPeriodicTimer);
     1161                              TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "MC146818 RTC (CMOS) - Periodic", &pThis->hPeriodicTimer);
    11621162    AssertRCReturn(rc, rc);
    11631163
    11641164    /* Seconds timer. */
    11651165    rc = PDMDevHlpTimerCreate(pDevIns, TMCLOCK_VIRTUAL_SYNC, rtcTimerSecond, pThis,
    1166                               TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "MC146818 RTC/CMOS - Second", &pThis->hSecondTimer);
     1166                              TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "MC146818 RTC (CMOS) - Second", &pThis->hSecondTimer);
    11671167    AssertRCReturn(rc, rc);
    11681168
    11691169    /* The second2 timer, this is always active. */
    11701170    rc = PDMDevHlpTimerCreate(pDevIns, TMCLOCK_VIRTUAL_SYNC, rtcTimerSecond2, pThis,
    1171                               TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "MC146818 RTC/CMOS - Second2", &pThis->hSecondTimer2);
     1171                              TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "MC146818 RTC (CMOS) - Second2", &pThis->hSecondTimer2);
    11721172    AssertRCReturn(rc, rc);
    11731173
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