method
dlopen
ruby latest stable - Class:
DL
Method deprecated or moved
This method is deprecated or moved on the latest stable version. The last existing version (v2_1_10) is shown here.
dlopen(*args)public
An interface to the dynamic linking loader
This is a shortcut to DL::Handle.new and takes the same arguments.
Example:
libc_so = "/lib64/libc.so.6" => "/lib64/libc.so.6" libc = DL .dlopen (libc_so) => #<DL::Handle:0x00000000e05b00>
VALUE
rb_dl_dlopen(int argc, VALUE argv[], VALUE self)
{
return rb_class_new_instance(argc, argv, rb_cDLHandle);
}