diff options
author | Ricardo Subtil <ricasubtil@gmail.com> | 2023-11-14 15:08:36 +0000 |
---|---|---|
committer | Ricardo Subtil <ricasubtil@gmail.com> | 2023-11-14 15:56:03 +0000 |
commit | 485342408ba2d32bd484c378abfbe71cca59829c (patch) | |
tree | 1cdc71ae5a5baa57dcc3ef1bf0c2e5aee6266cd9 /editor/debugger/debug_adapter/debug_adapter_parser.h | |
parent | 6afd320984cf14198368cc6c53752813a02169e3 (diff) | |
download | redot-engine-485342408ba2d32bd484c378abfbe71cca59829c.tar.gz |
Prevent race condition on initial breakpoints from DAP
Diffstat (limited to 'editor/debugger/debug_adapter/debug_adapter_parser.h')
-rw-r--r-- | editor/debugger/debug_adapter/debug_adapter_parser.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/editor/debugger/debug_adapter/debug_adapter_parser.h b/editor/debugger/debug_adapter/debug_adapter_parser.h index 9995066ab4..e5493a4b9f 100644 --- a/editor/debugger/debug_adapter/debug_adapter_parser.h +++ b/editor/debugger/debug_adapter/debug_adapter_parser.h @@ -71,6 +71,7 @@ public: Dictionary req_attach(const Dictionary &p_params) const; Dictionary req_restart(const Dictionary &p_params) const; Dictionary req_terminate(const Dictionary &p_params) const; + Dictionary req_configurationDone(const Dictionary &p_params) const; Dictionary req_pause(const Dictionary &p_params) const; Dictionary req_continue(const Dictionary &p_params) const; Dictionary req_threads(const Dictionary &p_params) const; @@ -84,6 +85,9 @@ public: Dictionary req_evaluate(const Dictionary &p_params) const; Dictionary req_godot_put_msg(const Dictionary &p_params) const; + // Internal requests + Dictionary _launch_process(const Dictionary &p_params) const; + // Events Dictionary ev_initialized() const; Dictionary ev_process(const String &p_command) const; |