Merge tag 'v0.18.20' into v0.19.x

This commit is contained in:
Max Kellermann
2014-12-08 15:03:09 +01:00
3 changed files with 15 additions and 2 deletions

View File

@@ -75,7 +75,7 @@ public:
#ifdef WIN32
return ::GetCurrentThreadId();
#else
return ::pthread_self();
return pthread_self();
#endif
}
@@ -84,7 +84,7 @@ public:
#ifdef WIN32
return id == other.id;
#else
return ::pthread_equal(id, other.id);
return pthread_equal(id, other.id);
#endif
}