Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • dl/lib/dl/func.rb

DL::CarriedFunction

Public Class Methods

new(cfunc, argtypes, n) click to toggle source
 
               # File dl/lib/dl/func.rb, line 218
def initialize(cfunc, argtypes, n)
  super(cfunc, argtypes)
  @carrier = []
  @index = n
  @mutex = Mutex.new
end
            

Public Instance Methods

bind_at_call(&block) click to toggle source
 
               # File dl/lib/dl/func.rb, line 233
def bind_at_call(&block)
  userdata = @carrier[-1]
  userdata[0].push(block)
  bind{|*args|
    ptr = args[@index]
    if( !ptr )
      raise(RuntimeError, "The index of userdata should be lower than #{args.size}.")
    end
    userdata = dlunwrap(Integer(ptr))
    args[@index] = userdata[1]
    userdata[0][0].call(*args)
  }
  @mutex.unlock()
end
            
create_carrier(data) click to toggle source
 
               # File dl/lib/dl/func.rb, line 225
def create_carrier(data)
  ary = []
  userdata = [ary, data]
  @mutex.lock()
  @carrier.push(userdata)
  return dlwrap(userdata)
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 visit Documenting-ruby.org.