Changes between Initial Version and Version 1 of Ticket #17742
- Timestamp:
- May 8, 2018 9:05:22 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #17742 – Description
initial v1 1 1 Although the following should result in triggering the timer every 1ms, under virtual box it will not result in triggering the timer ever 1ms but instead every 10ms, So other code that waits for 1 second actually waits 10 seconds. Can you fix!! Thanks. 2 2 {{{ 3 3 #define FREQIN100NS 10000 // Frequency to request: 100ns * 10000 == 1ms 4 4 … … 11 11 // created event - now set timer for callback every 1 millisecond 12 12 if (!EFI_ERROR(status=UEFI_BS->SetTimer(MyTimerEvent, TimerPeriodic, FREQIN100NS))) { 13 14 13 }}}