diff options
author | Juan Linietsky <reduzio@gmail.com> | 2023-04-29 17:20:38 +0200 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2023-07-26 12:06:45 +0200 |
commit | 5e512b705e66ecc86025e56bebd7632b8a392390 (patch) | |
tree | 07fd9507445c986efd915123a7069c2e1af1cebc /doc/classes/Thread.xml | |
parent | 202e4b2c1e7f8b25738b93d0e4d5066453d3edf3 (diff) | |
download | redot-engine-5e512b705e66ecc86025e56bebd7632b8a392390.tar.gz |
Support threads in the script debugger
* This implementation adds threads on the side of the client (script debugger).
* Some functions of the debugger are optimized.
* The profile is also now thread safe using atomics.
* The editor can switch between multiple threads when debugging.
This PR adds threaded support for the script language debugger. Every thread has its own thread local data and it will connect to the debugger using multiple thread IDs.
This means that, now, the editor can receive multiple threads entering debug mode at the same time.
Diffstat (limited to 'doc/classes/Thread.xml')
-rw-r--r-- | doc/classes/Thread.xml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/doc/classes/Thread.xml b/doc/classes/Thread.xml index 068f296c98..dbf63c0852 100644 --- a/doc/classes/Thread.xml +++ b/doc/classes/Thread.xml @@ -5,7 +5,6 @@ </brief_description> <description> A unit of execution in a process. Can run methods on [Object]s simultaneously. The use of synchronization via [Mutex] or [Semaphore] is advised if working with shared objects. - [b]Note:[/b] Breakpoints won't break on code if it's running in a thread. This is a current limitation of the GDScript debugger. [b]Warning:[/b] To ensure proper cleanup without crashes or deadlocks, when a [Thread]'s reference count reaches zero and it is therefore destroyed, the following conditions must be met: - It must not have any [Mutex] objects locked. |