From 14a8a8e9ee3cd4844eaaab927f5172b6a0d319be Mon Sep 17 00:00:00 2001 From: lizzie Date: Mon, 8 Jun 2026 23:30:24 +0000 Subject: [PATCH] fix non existant pthread funcs --- src/common/thread.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/thread.cpp b/src/common/thread.cpp index c947c88373..77b1c2e535 100644 --- a/src/common/thread.cpp +++ b/src/common/thread.cpp @@ -78,6 +78,8 @@ void SetCurrentThreadPriority(ThreadPriority new_priority) { } }(); set_thread_priority(find_thread(NULL), priority); +#elif defined(__EMSCRIPTEN__) + // TODO: set priority? #else pthread_t this_thread = pthread_self(); const auto scheduling_type = SCHED_OTHER; @@ -127,6 +129,8 @@ void SetCurrentThreadName(const char* name) { // See for reference // https://gitlab.freedesktop.org/mesa/mesa/-/blame/main/src/util/u_thread.c?ref_type=heads#L75 (void)name; +#elif defined(__EMSCRIPTEN__) + // TODO: set thread name? #else pthread_setname_np(pthread_self(), name); #endif