Skip to content

Commit

Permalink
* ext/fiddle/lib/fiddle.rb: [DOC] Document Fiddle.dlopen(nil)
Browse files Browse the repository at this point in the history
* ext/fiddle/handle.c: [DOC] Document Fiddle::Handle.new(nil)


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42184 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
zzak committed Jul 26, 2013
1 parent 8948280 commit 5cbfd75
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Fri Jul 26 13:08:53 2013 Zachary Scott <[email protected]>

* ext/fiddle/lib/fiddle.rb: [DOC] Document Fiddle.dlopen(nil)
* ext/fiddle/handle.c: [DOC] Document Fiddle::Handle.new(nil)

Fri Jul 26 13:04:15 2013 Nobuyoshi Nakada <[email protected]>

* load.c (rb_load_internal): use rb_load_file_str() to keep path
Expand Down
11 changes: 8 additions & 3 deletions ext/fiddle/handle.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,15 @@ predefined_fiddle_handle(void *handle)

/*
* call-seq:
* new(lib = nil, flags = Fiddle::RTLD_LAZY | Fiddle::RTLD_GLOBAL)
* new(library = nil, flags = Fiddle::RTLD_LAZY | Fiddle::RTLD_GLOBAL)
*
* Create a new handler that opens +library+ with +flags+.
*
* If no +library+ is specified or +nil+ is given, RTLD_DEFAULT is used, which
* usually means +libc+.
*
* libc = Fiddle::Handle.new
*
* Create a new handler that opens library named +lib+ with +flags+. If no
* library is specified, RTLD_DEFAULT is used.
*/
static VALUE
rb_fiddle_handle_initialize(int argc, VALUE argv[], VALUE self)
Expand Down
5 changes: 5 additions & 0 deletions ext/fiddle/lib/fiddle.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ def self.last_error= error
# Creates a new handler that opens +library+, and returns an instance of
# Fiddle::Handle.
#
# If +nil+ is given for the +library+, Fiddle::Handle::DEFAULT is used, which
# usually means +libc+.
#
# libc = Fiddle.dlopen(nil)
#
# See Fiddle::Handle.new for more.
def dlopen library
Fiddle::Handle.new library
Expand Down

0 comments on commit 5cbfd75

Please sign in to comment.