From 7a64819c2fa839eb6ce198285fdc2dc65493d062 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Sun, 14 Mar 2021 22:42:41 +0100 Subject: Thread: Re-add pthread_np.h include for FreeBSD/OpenBSD Was a regression from #45315. Fixes #46998. --- drivers/unix/thread_posix.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'drivers/unix/thread_posix.cpp') diff --git a/drivers/unix/thread_posix.cpp b/drivers/unix/thread_posix.cpp index 19fab1d475..e47046e3ae 100644 --- a/drivers/unix/thread_posix.cpp +++ b/drivers/unix/thread_posix.cpp @@ -35,6 +35,10 @@ #include "core/os/thread.h" #include "core/string/ustring.h" +#ifdef PTHREAD_BSD_SET_NAME +#include +#endif + static Error set_name(const String &p_name) { #ifdef PTHREAD_NO_RENAME return ERR_UNAVAILABLE; -- cgit v1.2.3