[#138] Thread Problems — Reimer Behrends <behrends@...>

I have been looking at the thread implementation of Ruby for the past

21 messages 1998/12/23
[#164] Re: Thread Problems — matz@... (Yukihiro Matsumoto) 1999/01/05

Hi.

[#167] Makefiles and -lcurses — Klaus.Schilling@... 1999/01/05

Julian Fondren writes:

[#168] Re: Makefiles and -lcurses — Julian Fondren <julian@...> 1999/01/05

OpenBSD has ncurses and it's own ocurses, and I prefer the latter.

[ruby-talk:00147] Re: calling a Ruby function from C?

From: matz@... (Yukihiro Matsumoto)
Date: 1998-12-26 16:19:37 UTC
List: ruby-talk #147
Hi.

In message "[ruby-talk:00146] calling a Ruby function from C?"
    on 98/12/26, "Bryce" <crowdog@siscom.net> writes:

|I would like to send my C code a Ruby function pointer
|so that C can call my Ruby function.

I don't really get it, sorry.  The ruby method can be invoked by:

  rb_funcall(obj, id, nargs, ...)

where id is the method name symbol which can be retrieved by

  rb_intern(name)

Hope this helps.
                                                matz.

In This Thread