mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Linux/BSD: Fix support for NetBSD
Add __NetBSD__ to `platform_config.h` so that it can find `alloca` and use the proper `pthread_setname_np` format. Rename RANDOM_MAX to avoid conflict with NetBSD stdlib. Fixes #42145.
This commit is contained in:
@@ -31,7 +31,15 @@
|
||||
#ifdef __linux__
|
||||
#include <alloca.h>
|
||||
#endif
|
||||
#if defined(__FreeBSD__) || defined(__OpenBSD__)
|
||||
#include <stdlib.h>
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__)
|
||||
#include <stdlib.h> // alloca
|
||||
// FreeBSD and OpenBSD use pthread_set_name_np, while other platforms,
|
||||
// include NetBSD, use pthread_setname_np. NetBSD's version however requires
|
||||
// a different format, we handle this directly in thread_posix.
|
||||
#ifdef __NetBSD__
|
||||
#define PTHREAD_NETBSD_SET_NAME
|
||||
#else
|
||||
#define PTHREAD_BSD_SET_NAME
|
||||
#endif
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user