Expand description
Raw bindings to libruby, generated by bindgen.
This module contains the raw bindings to libruby, generated by bindgen.
Structs
Enums
Constants
Statics
Functions
@defgroup ruby1 ruby(1) implementation A part of the implementation of ruby(1) command. Other programs that embed Ruby interpreter do not always need to use these functions. @{
ruby_vm_at_exit registers a function func to be invoked when a VM passed away. Functions registered this way runs in reverse order of registration, just like END {} block does. The difference is its timing to be triggered. ruby_vm_at_exit functions runs when a VM passed away, while END {} blocks runs just before a VM is passing away.