[perl #64124] Segmentation fault in embedding Parrot into Perl 5

2012-02-12 Thread Will Coleda via RT
On Mon Mar 23 13:09:56 2009, szab...@gmail.com wrote: I am not sure if this is a Parrot or Rakudo bug or just a plain invalid usage on my side. The following code runs, prints the prompt but when I enter a response I get a Segmentation fault. Gabor #!/usr/bin/perl use strict; use

Re: [perl #64124] Segmentation fault in embedding Parrot into Perl 5

2010-08-23 Thread Gabor Szabo
On Wed, Aug 18, 2010 at 8:13 AM, Will Coleda via RT perl6-bugs-follo...@perl.org wrote: On Mon Mar 23 13:09:56 2009, szab...@gmail.com wrote: I am not sure if this is a Parrot or Rakudo bug or just a plain invalid usage on my side. The following code runs, prints the prompt but when I enter

[perl #64124] Segmentation fault in embedding Parrot into Perl 5

2010-08-17 Thread Will Coleda via RT
On Mon Mar 23 13:09:56 2009, szab...@gmail.com wrote: I am not sure if this is a Parrot or Rakudo bug or just a plain invalid usage on my side. The following code runs, prints the prompt but when I enter a response I get a Segmentation fault. Gabor #!/usr/bin/perl use strict; use

[perl #64124] Segmentation fault in embedding Parrot into Perl 5

2009-03-24 Thread via RT
# New Ticket Created by Gabor Szabo # Please include the string: [perl #64124] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64124 I am not sure if this is a Parrot or Rakudo bug or just a plain invalid usage on my

Re: Embedding Parrot in Perl

2003-08-28 Thread Leopold Toetsch
Luke Palmer [EMAIL PROTECTED] wrote: 2) What do I put as stacktop in Parrot_init()? Its gone. stacktop is now set internally before entering the run loop. Thanks, Luke leo

Re: Embedding Parrot in Perl

2003-08-28 Thread Juergen Boemmels
Benjamin Goldberg [EMAIL PROTECTED] writes: Luke Palmer wrote: I started working on some XS code for embedding a Parrot interpreter in Perl. I ran into a few problems: 1) I don't know XS :-) (good way to learn, though) 2) What do I put as stacktop in Parrot_init()? I

Re: Embedding Parrot in Perl

2003-08-28 Thread Leopold Toetsch
Juergen Boemmels [EMAIL PROTECTED] wrote: Benjamin Goldberg [EMAIL PROTECTED] writes: If our DoD is no longer walking the C stack, then stacktop should no longer be needed. Until the code is changed, just pass NULL. AFAIK, the stack is still walked. (I don't like this but thats a diffrent

Embedding Parrot in Perl

2003-08-25 Thread Luke Palmer
I started working on some XS code for embedding a Parrot interpreter in Perl. I ran into a few problems: 1) I don't know XS :-) (good way to learn, though) 2) What do I put as stacktop in Parrot_init()? I can't just use a local variable in the calling function, because it

Re: Embedding Parrot in Perl

2003-08-25 Thread Benjamin Goldberg
Luke Palmer wrote: I started working on some XS code for embedding a Parrot interpreter in Perl. I ran into a few problems: 1) I don't know XS :-) (good way to learn, though) 2) What do I put as stacktop in Parrot_init()? I can't just use a local variable in the

Re: Embedding Parrot in Perl

2003-08-25 Thread Nicholas Clark
On Mon, Aug 25, 2003 at 10:44:59AM -0600, Luke Palmer wrote: I started working on some XS code for embedding a Parrot interpreter in Perl. I ran into a few problems: 1) I don't know XS :-) (good way to learn, though) Have you looked at what Arthur's been up to with ponie? You can get