Commit 505cf396 authored by Alexandre Julliard's avatar Alexandre Julliard

Moved PTHREAD_init_done out of the #ifdef.

parent a862f68d
......@@ -18,6 +18,13 @@
#include "winbase.h"
#include "thread.h"
static int init_done;
void PTHREAD_init_done(void)
{
init_done = 1;
}
/* Currently this probably works only for glibc2,
* which checks for the presence of double-underscore-prepended
* pthread primitives, and use them if available.
......@@ -87,13 +94,6 @@ typedef const void *key_data;
#define P_OUTPUT(stuff) write(2,stuff,strlen(stuff))
static int init_done;
void PTHREAD_init_done(void)
{
init_done = 1;
}
void __pthread_initialize(void)
{
}
......
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