===========================================================================
| 784 | |
| 785 | //=========================================================================== |
| 786 | Update_t CmdBenchmarkStop (int nArgs) |
| 787 | { |
| 788 | g_bBenchmarking = false; |
| 789 | DebugEnd(); |
| 790 | |
| 791 | GetFrame().FrameRefreshStatus(DRAW_TITLE | DRAW_DISK_STATUS); |
| 792 | GetFrame().VideoRedrawScreen(); |
| 793 | uint32_t currtime = GetTickCount(); |
| 794 | while ((extbench = GetTickCount()) != currtime) |
| 795 | ; // intentional busy-waiting |
| 796 | KeybQueueKeypress(' ' ,ASCII); |
| 797 | |
| 798 | return UPDATE_ALL; // 0; |
| 799 | } |
| 800 | |
| 801 | //=========================================================================== |
| 802 | Update_t CmdProfile (int nArgs) |
no test coverage detected