The Ruby C API is used to develop extensions for Ruby.
1
vote
0answers
36 views
Is there any lock mechanism in ruby's C extension for thread safety?
Anything like python's Py_BEGIN_ALLOW_THREADS and Py_END_ALLOW_THREADS?
1
vote
1answer
162 views
#include <ruby.h> It's not working
I've made several attempts to find this information on the internet via google, this site, and a few others; I can't seem to find a good tutorial and/or answer on/for it.
How would I go about using ...
1
vote
1answer
104 views
Creating a C extension in Ruby
I am trying to create a C extension for ruby. I am very new to development and have only just became familiar with Ruby, so it im really lost.
I have looked at "How to create a C Extension in Ruby in ...
2
votes
1answer
65 views
Testing equality of symbols using the Ruby C API
I am trying to find a way to test symbol equality in the Ruby C API. Consider the following C function:
static VALUE test_symbol_equality(VALUE self, VALUE symbol) {
if (rb_intern("test") == ...
2
votes
1answer
116 views
how to rb_protect everything in ruby
I want to call ruby code from my own C code. In case an exception gets raised, I have to rb_protect the ruby code I call. rb_protect looks like this:
VALUE rb_protect(VALUE (* proc) (VALUE), VALUE ...
3
votes
1answer
70 views
Ruby C API `defined? SomeConstant` equivalent?
I'm trying to convert an if condition of:
unless defined? SomeConstant
# do some stuff
end
Into part of a native C extension. Does anybody know how to do the defined? predicate check in the C ...
2
votes
1answer
125 views
How should marking be accomplished on arrays of VALUE* in a Ruby extension?
I have a matrix type which contains a void* array, representing an array of objects (which are all of one type in a given matrix, e.g., all C integers, all floats, doubles, a variety of structs, or ...
1
vote
1answer
381 views
Using rb_require with rb_protect to embed Ruby in C
I want to use rb_require with rb_protect, as in the following example:
int error;
rb_protect( (VALUE (*)(VALUE))rb_require, (VALUE) "./test", &error);
But when I compile it, I get this error:
...
0
votes
1answer
123 views
Python module semantics vs. Ruby module semantics in their C-APIs
I've been using Python for a long time and I've just started to toy around with Ruby, but I'm finding the differences between modules in the two languages really confusing, especially when viewed ...
4
votes
2answers
186 views
Defining classes in modules with the Ruby C API
I am trying to define a class inside a module with the Ruby C API. However, the way I have seen this done all over the net doesn't seem to work for me. Specifically, the top-level module gets created ...
3
votes
2answers
171 views
Accepting an undefined number of arguments in Ruby/Inline C
I am trying to rewrite a highly recursive function using inline C with Ruby. The function accepts an undefined number of arguments, i.e. it would look like this in Ruby:
def each_entity(*types)
...
2
votes
1answer
148 views
Strange behaviour with costructors in Ruby C extension
I have see strange behaviour with class costructors in Ruby C extension.
See an example: we have a class Foo that is a C extension and a class Bar that inherits from Foo:
extconf.rb
# extconf.rb
...