/* * call-seq: * Mutex.new => mutex * * Creates a new Mutex */ static VALUE mutex_initialize(VALUE self) { return self; }