Tagged Questions
The cextension tag has no wiki summary.
7
votes
2answers
392 views
How is writing a C interface easier in Ruby than Perl?
According to the official ruby About page it's easier to extend Ruby with C than Perl. I'm not a (perl) XS guy, but I find it dirt simple to write something quick and simple with Inline::C, so why is ...
4
votes
3answers
224 views
How to avoid gcc warning in Python C extension when using Py_BEGIN_ALLOW_THREADS
The simplest way to manipulate the GIL in Python C extensions is to use the macros provided:
my_awesome_C_function()
{
blah;
Py_BEGIN_ALLOW_THREADS
// do stuff that doesn't need the ...
2
votes
1answer
34 views
Updating C extension for Ruby 1.9
I'm updating a fairly old C extension bound to a ruby gem that I didn't write. Currently, when I execute the script that will use the C extension, I get this error:
symbol lookup error: ...
2
votes
1answer
51 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
...
2
votes
1answer
288 views
Dynamically build and return a Python list in a C Python extension
I'm writing a Python extension in C, and I'm trying to figure out how to dynamically build and return a Python list using my extension. I know how to build a list of predetermined size using ...