Moved PTHREAD_init_done out of the #ifdef.

oldstable
Alexandre Julliard 2001-02-27 01:54:20 +00:00
parent a862f68db5
commit 505cf3965c
1 changed files with 7 additions and 7 deletions

View File

@ -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)
{
}