add FreeBSD builder for GHA (#1595)

This commit is contained in:
R4SAS 2020-12-07 08:36:06 +03:00 committed by GitHub
parent 9a2c6a7619
commit ac67cd7f9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 1 deletions

View file

@ -122,7 +122,7 @@ namespace util
#if defined (__APPLE__)
pthread_setname_np(name);
#elif defined(__FreeBSD__)
pthread_set_name_np(pthread_self(), name)
pthread_set_name_np(pthread_self(), name);
#else
pthread_setname_np(pthread_self(), name);
#endif