Commit 3c6fe751 authored by Lectem's avatar Lectem

fix mutex for uclibc

The uClibc doesn't have pthread_spin_* implemented on their 'old' linux threads.
Since it is on linux, we have to check if uclibc is using this implementation or not.
parent ede4943d
......@@ -923,7 +923,7 @@ struct Mutex::Impl
int refcount;
};
#elif defined __linux__ && !defined ANDROID
#elif defined __linux__ && !defined ANDROID && !defined __LINUXTHREADS_OLD__
struct Mutex::Impl
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment