am 62daffe1: am f9c5afb1: Merge "Redesign dlopen() locks to be recursive per thread."
* commit '62daffe147e8810ce48a897df46b0b3db95ebaa3': Redesign dlopen() locks to be recursive per thread.
This commit is contained in:
commit
49a05c060a
|
@ -42,7 +42,7 @@ static const char *dl_errors[] = {
|
|||
#define likely(expr) __builtin_expect (expr, 1)
|
||||
#define unlikely(expr) __builtin_expect (expr, 0)
|
||||
|
||||
static pthread_mutex_t dl_lock = PTHREAD_MUTEX_INITIALIZER;
|
||||
pthread_mutex_t dl_lock = PTHREAD_RECURSIVE_MUTEX_INITIALIZER;
|
||||
|
||||
static void set_dlerror(int err)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue