Fix broken win32+bsd build

master
sapier 2014-04-11 21:45:30 +02:00
parent fefec8cdc4
commit 8bb8602c25
1 changed files with 3 additions and 3 deletions

View File

@ -278,13 +278,13 @@ inline void setThreadName(const char* name) {
* to add this feature please create a pull request.
* "setproctitle" doesn't work for threadnames.
*/
#define setThreadName(a)
inline void setThreadName(const char* name) {}
#elif defined(_WIN32)
// threadnames are not supported on windows
#define setThreadName(a)
inline void setThreadName(const char* name) {}
#else
#warning "Unknown platform for setThreadName support, you wont have threadname support."
#define setThreadName(a)
inline void setThreadName(const char* name) {}
#endif
} // namespace porting