summaryrefslogtreecommitdiff
path: root/global.c
blob: 56a26f3fe120d8fb6a71e8e9c6fda98b0431a4df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * global.c
 *
 * Description:
 * This translation unit instantiates data associated with the implementation
 * as a whole.
 */

#include "pthread.h"
#include "implement.h"


int _pthread_processInitialized = FALSE;
pthread_key_t _pthread_selfThreadKey = NULL;
pthread_key_t _pthread_cleanupKey = NULL;