Changeset 72450 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jun 5, 2018 2:26:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/PS2K.cpp
r72408 r72450 1539 1539 1540 1540 /* 1541 * Create the input rate throttling timer. Does not use virtual time!1541 * Create the input rate throttling timer. 1542 1542 */ 1543 1543 PTMTIMER pTimer; 1544 rc = PDMDevHlpTMTimerCreate(pDevIns, TMCLOCK_ REAL, ps2kThrottleTimer, pThis,1545 1544 rc = PDMDevHlpTMTimerCreate(pDevIns, TMCLOCK_VIRTUAL, ps2kThrottleTimer, pThis, 1545 TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "PS2K Throttle Timer", &pTimer); 1546 1546 if (RT_FAILURE(rc)) 1547 1547 return rc; … … 1552 1552 1553 1553 /* 1554 * Create the typematic delay/repeat timer. Does not use virtual time!1554 * Create the typematic delay/repeat timer. 1555 1555 */ 1556 rc = PDMDevHlpTMTimerCreate(pDevIns, TMCLOCK_ REAL, ps2kTypematicTimer, pThis,1556 rc = PDMDevHlpTMTimerCreate(pDevIns, TMCLOCK_VIRTUAL, ps2kTypematicTimer, pThis, 1557 1557 TMTIMER_FLAGS_DEFAULT_CRIT_SECT, "PS2K Typematic Timer", &pTimer); 1558 1558 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.