summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--thread_sync.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/thread_sync.c b/thread_sync.c
index 0b44365eaf..5b6ff80d56 100644
--- a/thread_sync.c
+++ b/thread_sync.c
@@ -4,14 +4,6 @@
static VALUE rb_cMutex, rb_cQueue, rb_cSizedQueue, rb_cConditionVariable;
static VALUE rb_eClosedQueueError;
-/*
- * keep these globally so we can walk and reinitialize them at fork
- * in the child process
- */
-static LIST_HEAD(szqueue_list);
-static LIST_HEAD(queue_list);
-static LIST_HEAD(condvar_list);
-
/* sync_waiter is always on-stack */
struct sync_waiter {
rb_thread_t *th;