NetBSD build fix proposal. (#10308)
Fixing thread naming call and let the class setting RANDOM_MIN/RANDOM_MAX.master
parent
44c98089cf
commit
b262184acf
|
@ -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
|
||||
|
|
|
@ -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__)
|
||||
|
||||
|
|
Loading…
Reference in New Issue