NetBSD build fix proposal. (#10308)

Fixing thread naming call and let the class setting RANDOM_MIN/RANDOM_MAX.
This commit is contained in:
David CARLIER 2020-08-25 19:50:41 +01:00 committed by GitHub
parent 44c98089cf
commit b262184acf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -29,6 +29,13 @@
#include "exceptions.h"
#include "util/string.h"
#if defined(RANDOM_MIN)
#undef RANDOM_MIN
#endif
#if defined(RANDOM_MAX)
#undef RANDOM_MAX
#endif
extern FlagDesc flagdesc_noiseparams[];
// Note: this class is not polymorphic so that its high level of

View File

@ -219,7 +219,7 @@ void Thread::setName(const std::string &name)
#elif defined(__NetBSD__)
pthread_setname_np(pthread_self(), name.c_str());
pthread_setname_np(pthread_self(), "%s", const_cast<char*>(name.c_str()));
#elif defined(__APPLE__)