aboutsummaryrefslogtreecommitdiffstats
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
commitc35391913f95b4a5c725083e3dc8399fc29086fd (patch)
tree36f97d80088263917883e9179b1dc1600864eb9e /thread_sync.c
parent0dec604cdcf1ba3d39dd50b7035b775e03c2af42 (diff)
downloadruby-c35391913f95b4a5c725083e3dc8399fc29086fd.tar.gz
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 */