Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
299 views

What is the modern way of creating an XS module from scratch?

I need to write an XS module for Perl. It is my understanding that h2xs is pretty much deprecated today, what is the preferred method for starting an XS module today? I looked at Module::Starter, ...
6
votes
1answer
317 views

Calling C function from Perl within embedded C application

Ok, this is a very interesting question and there may not be any easy way to do this but figured I would throw this out there before deciding that modifying Perl is my underlying answer. So I've got ...
5
votes
3answers
203 views

What tools can help build an XS project?

I've recently started learning XS using perlxstut and the tutorial suggests that I create my module using the old h2xs tool to create an ExtUtils::MakeMaker-based project. However for pure Perl ...
3
votes
1answer
96 views

Integrating XS code into Moose Class definition files

I have written a XS based Perl module which provides access to functions in a C Library - lets call it MyLib_XS for now. I want to move ahead from here by using these functions for defining methods in ...
3
votes
1answer
130 views

How can Perl's XSUB die?

I have written a Perl XS wrapper for a C library consisting of about ~80 functions. Right now my general strategy is to substitute the error from a C function with PL_sv_undef and the calling Perl ...
3
votes
2answers
280 views

Why do I get “undefined reference” errors when I compile my XS with Perl 5.10?

Hi I have a C++ object that I am converting to Perl using Perl XS. This process works fine with Perl 5.8.5 and 5.8.7. But as soon as I try to use Perl 5.10.0, I run into a lot of compile errors. ...
2
votes
1answer
78 views

How can I uniquely identify all of the calls to a function?

I know that caller will give me the file name and line number where a function was called, but how can I get the character or byte offset? It is okay if I must drop down to XS for it (the function ...
2
votes
1answer
115 views

structure definition conflict between XS module and perl build

On OpenSolaris ($^O eq 'solaris', vers. 2.11), I'm trying to build an XS module which uses the XPGv4v2/Single Unix Spec. understanding of struct msghdr, specifically for "ancillary data" ...
2
votes
3answers
202 views

How do I write a Perl constructor in XS?

I am trying to write new XS module for Perl. I have tested by following XS module writing instruction and it is working fine. I am not able to understand how to I write new method for XS I have a ...
1
vote
2answers
97 views

When should you use XS?

I am writing up a talk on XS and I need to know when the community thinks it is proper to reach for XS.
1
vote
1answer
60 views

Signal handler in XS module

I have very simple constructor and destructor for some C-based library. Well, i need to catch signals like TERM and others to enforce destructor calling on perl's mandatory death with killall perl ...
1
vote
1answer
96 views

How can I tell if a C struct has a member in Perl XS?

Is there an ExtUtils::* or Module::Build (or other) analog to Ruby's mkmf.have_struct_member? I'd like to do something like (in the manner of a hints/ file): .... if struct_has_member("msghdr", ...