aboutsummaryrefslogtreecommitdiffstats
path: root/thread.c
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-16 20:26:32 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-07-16 20:26:32 +0000
commit08f234445cf412aad68fb8b5396b026bdad4bc29 (patch)
treec08837540c37fb22d8bac3ca980e23e425d10589 /thread.c
parent020ff711ce5cea15d7c4927e730f8ba11d16f989 (diff)
downloadruby-08f234445cf412aad68fb8b5396b026bdad4bc29.tar.gz
thread.c (mutex_alloc): remove needless volatile
Allocation functions do not do anything non-obvious to the compiler, so there's no reason for volatile here. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51271 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/thread.c b/thread.c
index 95b022f542..644dfe2f31 100644
--- a/thread.c
+++ b/thread.c
@@ -4189,7 +4189,7 @@ rb_obj_is_mutex(VALUE obj)
static VALUE
mutex_alloc(VALUE klass)
{
- VALUE volatile obj;
+ VALUE obj;
rb_mutex_t *mutex;
obj = TypedData_Make_Struct(klass, rb_mutex_t, &mutex_data_type, mutex);