diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2022-03-14 11:02:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-14 11:02:59 +0000 |
| commit | a7adb2fb6e092e1f37791b1da633b01ff3ca489c (patch) | |
| tree | 6bff88f90b9b72dcc04ce1c02f86d981c2135fdd /src/threading.cpp | |
| parent | 410b85b5c7f768543e03c9fc6f47f8c2efcd602b (diff) | |
| parent | f907516cbd0078b69996929d02742d0c1a48c226 (diff) | |
Merge branch 'master' into freestanding_amd64
Diffstat (limited to 'src/threading.cpp')
| -rw-r--r-- | src/threading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threading.cpp b/src/threading.cpp index 50d0dfed1..63e3415b2 100644 --- a/src/threading.cpp +++ b/src/threading.cpp @@ -486,7 +486,7 @@ void thread_set_name(Thread *t, char const *name) { #elif defined(GB_SYSTEM_OSX) // TODO(bill): Test if this works pthread_setname_np(name); -#elif defined(GB_SYSTEM_FREEBSD) +#elif defined(GB_SYSTEM_FREEBSD) || defined(GB_SYSTEM_OPENBSD) pthread_set_name_np(t->posix_handle, name); #else // TODO(bill): Test if this works |