Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Re: Embedding Perl in C -- access to builtins?

by premchai21 (Curate)
on May 31, 2002 at 19:54 UTC ( [id://170817]=note: print w/replies, xml ) Need Help??


in reply to Re: Embedding Perl in C -- access to builtins?
in thread Embedding Perl in C -- access to builtins?

That sounds like a good idea.

$ ./reverse
var is narf!
Segmentation fault

Eh?

cat reverse.c

#include <EXTERN.h> #include <perl.h> static PerlInterpreter *my_perl; static SV * do_reverse(x) SV *x; { dSP; int count; SV *var; ENTER; SAVETMPS; PUSHMARK(SP); XPUSHs(sv_mortalcopy(x)); PUTBACK; count = perl_call_pv("CORE::reverse", G_SCALAR); SPAGAIN; if (count != 1) croak("Aieee!"); var = POPs; PUTBACK; FREETMPS; LEAVE; } main (int argc, char **argv, char **env) { STRLEN len; SV *var; my_perl = perl_alloc(); perl_construct(my_perl); var = newSVpvf("%s", "narf!"); printf("var is %s\n", SvPV(var, len)); var = do_reverse(sv_2mortal(var)); printf("var is %s\n", SvPV(var, len)); perl_destruct(my_perl); perl_free(my_perl); }

According to gdb, it's segfaulting on the perl_call_pv. What am I doing wrong?

(Running perl, v5.6.1, built for i686-linux-multi.)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://170817]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (4)
As of 2024-03-29 11:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found