Fix thread name setting

Because of a typo, thread names no longer appeared in the overview.

This was broken in 51ed9ec.
This commit is contained in:
Wladimir J. van der Laan 2014-08-12 12:05:03 +02:00
parent a38a98c476
commit 76c49c4138
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
#ifndef WIN32 #ifndef WIN32
// for posix_fallocate // for posix_fallocate
#ifdef __linux_ #ifdef __linux__
#ifdef _POSIX_C_SOURCE #ifdef _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE #undef _POSIX_C_SOURCE
@ -26,7 +26,7 @@
#define _POSIX_C_SOURCE 200112L #define _POSIX_C_SOURCE 200112L
#include <sys/prctl.h> #include <sys/prctl.h>
#endif #endif // __linux__
#include <algorithm> #include <algorithm>
#include <fcntl.h> #include <fcntl.h>