Fix Tilera compilation

Use proper initializer for a static mutex declaration.

Credits: Ken Steele
pull/1294/head
Victor Julien 11 years ago
parent 8e946b92b7
commit baa55ba239

@ -2113,7 +2113,7 @@ typedef struct Threads_ {
} Threads; } Threads;
static Threads thread_store = { NULL, 0, 0 }; static Threads thread_store = { NULL, 0, 0 };
static SCMutex thread_store_lock = PTHREAD_MUTEX_INITIALIZER; static SCMutex thread_store_lock = SCMUTEX_INITIALIZER;
void TmThreadsListThreads(void) void TmThreadsListThreads(void)
{ {

Loading…
Cancel
Save