mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
Merge pull request #45315 from RandomShaper/modernize_thread
Modernize Thread
This commit is contained in:
commit
5525cd85c6
87 changed files with 385 additions and 1056 deletions
|
|
@ -214,7 +214,7 @@ class EditorExportPlatformJavaScript : public EditorExportPlatform {
|
|||
Ref<EditorHTTPServer> server;
|
||||
bool server_quit = false;
|
||||
Mutex server_lock;
|
||||
Thread *server_thread = nullptr;
|
||||
Thread server_thread;
|
||||
|
||||
enum ExportMode {
|
||||
EXPORT_MODE_NORMAL = 0,
|
||||
|
|
@ -682,7 +682,7 @@ void EditorExportPlatformJavaScript::_server_thread_poll(void *data) {
|
|||
|
||||
EditorExportPlatformJavaScript::EditorExportPlatformJavaScript() {
|
||||
server.instance();
|
||||
server_thread = Thread::create(_server_thread_poll, this);
|
||||
server_thread.start(_server_thread_poll, this);
|
||||
|
||||
Ref<Image> img = memnew(Image(_javascript_logo));
|
||||
logo.instance();
|
||||
|
|
@ -703,8 +703,7 @@ EditorExportPlatformJavaScript::EditorExportPlatformJavaScript() {
|
|||
EditorExportPlatformJavaScript::~EditorExportPlatformJavaScript() {
|
||||
server->stop();
|
||||
server_quit = true;
|
||||
Thread::wait_to_finish(server_thread);
|
||||
memdelete(server_thread);
|
||||
server_thread.wait_to_finish();
|
||||
}
|
||||
|
||||
void register_javascript_exporter() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue