Used internally by Fiddle::Importer
Create a new handler with the open handlers
Used internally by Fiddle::Importer#dlload
# File fiddle/lib/fiddle/import.rb, line 12
def initialize(handlers)
@handlers = handlers
end
See #sym
# File fiddle/lib/fiddle/import.rb, line 39
def [](symbol)
sym(symbol)
end
Array of the currently loaded libraries.
# File fiddle/lib/fiddle/import.rb, line 17
def handlers()
@handlers
end
Returns the address as an Integer from any handlers with the function named
symbol.
Raises a DLError if the handle is closed.
# File fiddle/lib/fiddle/import.rb, line 25
def sym(symbol)
@handlers.each{|handle|
if( handle )
begin
addr = handle.sym(symbol)
return addr
rescue DLError
end
end
}
return nil
end
Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.
If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.
If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.
If you want to help improve the Ruby documentation, please see Improve the docs, or visit Documenting-ruby.org.