| 795 | } |
| 796 | |
| 797 | void Debugger::ServerThreadReentry() |
| 798 | { |
| 799 | // Called when the debugger is entered from any of the server thread hooks |
| 800 | std::function<void ()> func; |
| 801 | while (pendingActions_.try_pop(func)) { |
| 802 | func(); |
| 803 | } |
| 804 | } |
| 805 | |
| 806 | void Debugger::FinishedSingleStep() |
| 807 | { |
no outgoing calls
no test coverage detected