| 712 | } |
| 713 | |
| 714 | void ContextDebugger::RequestEnableDebugging(bool enabled) |
| 715 | { |
| 716 | pendingActions_.push([=]() { |
| 717 | if (enabled_ != enabled) { |
| 718 | EnableDebugging(enabled); |
| 719 | } |
| 720 | }); |
| 721 | breakpointCv_.notify_one(); |
| 722 | } |
| 723 | |
| 724 | void ContextDebugger::EnableDebugging(bool enabled) |
| 725 | { |