godot/tests
reduz 67a260d63f Implement a Worker ThreadPool
This PR implements a worked thread pool. It uses a fixed amount of threads in a pool and allows scheduling tasks
that can be run on threads (and then waited for). It satisfies the following use cases:

* HTML5 thread count is fixed (and similar restrictions are known in consoles) so we need to reuse threads.
* Thread spawning is slow in general, so reusing threads is faster anyway.
* This implementation supports recursive waiting for tasks, making it less prone to deadlocks if threads from the pool also run tasks.

After this is approved and merged, subsequent PRs will be needed to replace the ThreadWorkPool usage by this class.
2022-07-22 11:46:48 +02:00
..
core Implement a Worker ThreadPool 2022-07-22 11:46:48 +02:00
data Tests: Improve coverage for File::get_csv_line() 2021-08-04 11:53:21 +02:00
scene Rename OSX to macOS and iPhoneOS to iOS. 2022-07-21 09:37:52 +03:00
servers Implement text-to-speech support on Android, iOS, HTML5, Linux, macOS and Windows. 2022-04-28 14:35:41 +03:00
SCsub Remove unused legacy tests 2022-04-07 00:38:44 +02:00
test_macros.cpp Replace most uses of Map by HashMap 2022-05-16 10:37:48 +02:00
test_macros.h Fix typos with codespell 2022-05-23 21:32:19 +02:00
test_main.cpp Implement a Worker ThreadPool 2022-07-22 11:46:48 +02:00
test_main.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
test_tools.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
test_utils.cpp Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
test_utils.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00
test_validate_testing.h Update copyright statements to 2022 2022-01-03 21:27:34 +01:00