| 685 | } |
| 686 | |
| 687 | void Debugger::ServerThreadReentry() |
| 688 | { |
| 689 | // Called when the debugger is entered from any of the server thread hooks |
| 690 | std::function<void ()> func; |
| 691 | while (pendingActions_.try_pop(func)) { |
| 692 | func(); |
| 693 | } |
| 694 | } |
| 695 | |
| 696 | void Debugger::FinishedSingleStep() |
| 697 | { |
no outgoing calls
no test coverage detected