summaryrefslogtreecommitdiff
path: root/thread_sync.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-28 21:52:15 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-28 21:52:15 +0000
commit5ad289b13375e4dcceb2732a76b1c566f8f7f00b (patch)
tree36f97d80088263917883e9179b1dc1600864eb9e /thread_sync.c
parenta3b53cd9919ff01567ef04af4057b3dec3192471 (diff)
thread_sync.c: static classes
We do not want to waste space by exposing globals to other objects. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53364 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_sync.c')
-rw-r--r--thread_sync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread_sync.c b/thread_sync.c
index 091246a7ad..9c73654b0f 100644
--- a/thread_sync.c
+++ b/thread_sync.c
@@ -1,7 +1,7 @@
/* included by thread.c */
-VALUE rb_cMutex, rb_cQueue, rb_cSizedQueue, rb_cConditionVariable;
-VALUE rb_eClosedQueueError;
+static VALUE rb_cMutex, rb_cQueue, rb_cSizedQueue, rb_cConditionVariable;
+static VALUE rb_eClosedQueueError;
/* Mutex */