On this page
module RubyVM::MJIT
Provides access to the Method JIT compiler of MRI.
Of course, this module is MRI specific.
Public Class Methods
static VALUE
mjit_enabled_p(VALUE _)
{
return RBOOL(mjit_enabled);
}
Returns true if JIT is enabled
static VALUE
mjit_resume_m(VALUE _)
{
return mjit_resume();
}
Ruby Core © 1993–2022 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.