summaryrefslogtreecommitdiff
path: root/global.c
diff options
context:
space:
mode:
Diffstat (limited to 'global.c')
-rw-r--r--global.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/global.c b/global.c
index a2ca988..01a1a7c 100644
--- a/global.c
+++ b/global.c
@@ -11,6 +11,14 @@
#include "pthread.h"
#include "implement.h"
+
+int _pthread_processInitialized = FALSE;
+pthread_key_t _pthread_selfThreadKey = NULL;
+pthread_key_t _pthread_cleanupKey = NULL;
+
+
+#if 0 /* Pre Bossom */
+
/* POSIX run-time invariant values. (Currently POSIX minimum values)
Making these constants will mean that applications remain binary
@@ -81,3 +89,5 @@ pthread_key_t _pthread_key_reuse[_PTHREAD_MAX_KEYS];
/* Index to the first available reusable pthread_key_t. */
int _pthread_key_reuse_top;
+
+#endif /* Pre Bossom */