Re: Segmentation Fault

2021-08-07 Thread Clifton Wood
'm having a problem: any class with a > method seems to generate an error message: "Segmentation fault (core > dumped)" whenever a script references the class. The class (.pm6) files > look good to me and raise no issues with the Community Edition of Comma > IDE. > >

Segmentation Fault

2021-08-07 Thread Joseph Polanik
I'm trying to develop classes to replace repetitive portions of an existing set of scripts. However, I'm having a problem: any class with a method seems to generate an error message: "Segmentation fault (core dumped)" whenever a script references the class. The class (.pm6)

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently updating SetHash", > a summary of which appears below. > > There is no need to reply to this message right now. Your ticket has been > assigned

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently updating SetHash", > a summary of which appears below. > > There is no need to reply to this message right now. Your ticket has been > assigned

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
>>> On 10 Nov 2017, at 03:28, David Lowe wrote: >>> >>> This crash still occurs with rakudo 2017.10. >>> >>> On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT >>> wrote: >>> Greetings, >>> >>> This message has been a

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
>>> On 10 Nov 2017, at 03:28, David Lowe wrote: >>> >>> This crash still occurs with rakudo 2017.10. >>> >>> On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT >>> wrote: >>> Greetings, >>> >>> This message has been a

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Timo Paulssen via RT
s something in handling Proxy. > > >> On 10 Nov 2017, at 03:28, David Lowe wrote: >> >> This crash still occurs with rakudo 2017.10. >> >> On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT >> wrote: >> Greetings, >> >> This message has bee

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Timo Paulssen
s something in handling Proxy. > > >> On 10 Nov 2017, at 03:28, David Lowe wrote: >> >> This crash still occurs with rakudo 2017.10. >> >> On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT >> wrote: >> Greetings, >> >> This message has bee

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
udo 2017.10. > > On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT > wrote: > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently updating SetHash"

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
udo 2017.10. > > On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT > wrote: > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently updating SetHash"

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen
t; > On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT > wrote: > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently updating SetHash", > a summary

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-14 Thread Elizabeth Mattijsen via RT
t; > On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT > wrote: > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently updating SetHash", > a summary

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-10 Thread David Lowe via RT
This crash still occurs with rakudo 2017.10. On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT wrote: > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently up

Re: [perl #132225] AutoReply: segmentation fault while concurrently updating SetHash

2017-11-10 Thread David Lowe
This crash still occurs with rakudo 2017.10. On Thu, Oct 5, 2017 at 9:10 PM, perl6 via RT wrote: > Greetings, > > This message has been automatically generated in response to the > creation of a trouble ticket regarding: > "segmentation fault while concurrently up

Re: [perl #132225] segmentation fault while concurrently updating SetHash

2017-10-10 Thread Timo Paulssen via RT
It's a bit tricky to get a proper backtrace dump out of gdb for this, but what I'm seeing is this: this source file calls sink on a value from outside the protected lock, which runs the FETCH of the SetHash, which calls nqp::existskey on the internal elems hash. That part is explosive, presumably

Re: [perl #132225] segmentation fault while concurrently updating SetHash

2017-10-10 Thread Timo Paulssen
It's a bit tricky to get a proper backtrace dump out of gdb for this, but what I'm seeing is this: this source file calls sink on a value from outside the protected lock, which runs the FETCH of the SetHash, which calls nqp::existskey on the internal elems hash. That part is explosive, presumably

Re: [perl #132225] segmentation fault while concurrently updating SetHash

2017-10-10 Thread Timo Paulssen via RT
This runs reliably when you let the lock-protected block return something unrelated to the hash:     #!/usr/bin/env perl6     use v6.c;     my $lock = Lock.new;     my $set = SetHash.new;     await (^12).map: {     start {     for (^1000) {     $lock.protect: { $set<1> = True }     $lock.protect

Re: [perl #132225] segmentation fault while concurrently updating SetHash

2017-10-10 Thread Timo Paulssen
This runs reliably when you let the lock-protected block return something unrelated to the hash:     #!/usr/bin/env perl6     use v6.c;     my $lock = Lock.new;     my $set = SetHash.new;     await (^12).map: {     start {     for (^1000) {     $lock.protect: { $set<1> = True }     $lock.protect

[perl #132225] segmentation fault while concurrently updating SetHash

2017-10-10 Thread Aleks-Daniel Jakimenko-Aleksejev via RT
FWIW it always did that, not a regression. On 2017-10-05 21:10:39, j.david.l...@gmail.com wrote: > This short program crashes reliably (with a segmentation fault) on my > system: > > ``` > #!/usr/bin/env perl6 > > use v6.c; > > my $lock = Lock.new; > my $set =

[perl #132225] segmentation fault while concurrently updating SetHash

2017-10-05 Thread via RT
# New Ticket Created by David Lowe # Please include the string: [perl #132225] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132225 > This short program crashes reliably (with a segmentation fault) on my system: ``` #!/

[perl #128323] Rare Segmentation Fault

2016-06-05 Thread via RT
12609785) Ran my program and got a Segmentation Fault, even though running it multiple times again did not trigger it. Also, got one last night with a slightly different codebase, but one that did use two IO::Socket::Async, suggesting that spawning several of them fast might be where the bug liv

Re: [perl #127902] [BUG] segmentation fault when defining multi sub cross

2016-04-15 Thread Timo Paulssen
On 04/15/2016 09:36 PM, Nicholas Clark wrote: > multi sub cross() { } Here's a gdb backtrace and a moarvm-level backtrace. Value looks a tiny bit suspicious, though i don't know if there's actually anything wrong with it. Program received signal SIGSEGV, Segmentation fault. 0x0

Re: [perl #127902] [BUG] segmentation fault when defining multi sub cross

2016-04-15 Thread Nicholas Clark
On Thu, Apr 14, 2016 at 03:22:37PM -0700, Caligo Wall wrote: > This causes segmentation fault: > > perl6 -e "multi sub cross() { }" Thanks for the report. It's an interesting failure - ASAN reports an out of bounds read: $ ./per

[perl #127902] [BUG] segmentation fault when defining multi sub cross

2016-04-15 Thread via RT
# New Ticket Created by Caligo Wall # Please include the string: [perl #127902] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127902 > This causes segmentation fault: perl6 -e "multi sub cross() { }" T

[perl #127440] Segmentation Fault with Crust

2016-02-01 Thread via RT
# New Ticket Created by Daisuke Maki # Please include the string: [perl #127440] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127440 > Putting load against Crust produces a segmentation fault. Error: =begin PERL6LIB=

Re: [perl #127254] Segmentation fault on recursive binding (my $x := (my $y := $x))

2016-01-13 Thread Nicholas Clark
Thanks for the report. On Tue, Jan 12, 2016 at 02:29:46PM -0800, Alex Jakimenko wrote: > Code: > my $x := (my $y := $x); > say $x.WHAT; > > Result: > Segmentation fault > > > Code: > my $x := (my $y := $x); > say $y.WHAT; # same for $y > > Result: >

[perl #127254] Segmentation fault on recursive binding (my $x := (my $y := $x))

2016-01-12 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #127254] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=127254 > Code: my $x := (my $y := $x); say $x.WHAT; Result: Segmentation fault Code: my

[perl #126857] Segmentation fault (my ([$a]); $a.WHAT)

2015-12-09 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126857] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126857 > Code: my ([$a]); $a.WHAT Result: Segmentation fault This was found by _nadim ( h

Re: [perl #126350] [BUG] segmentation fault with precompile + add_method

2015-10-14 Thread Nicholas Clark
On Tue, Oct 13, 2015 at 09:20:54AM -0700, Shoichi Kaji wrote: > + perl6-m -Ilib -MA -e B.bar > test.sh: line 19: 31493 Segmentation fault perl6-m -Ilib -MA -e 'B.bar' > ``` $ ./perl6-m -Ilib -MA -e &

[perl #126350] [BUG] segmentation fault with precompile + add_method

2015-10-14 Thread via RT
# New Ticket Created by Shoichi Kaji # Please include the string: [perl #126350] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126350 > The following script exits with segmentation fault. (code is also available at ht

[perl #126350] [BUG] segmentation fault with precompile + add_method

2015-10-13 Thread Tobias Leich via RT
It seems to segfault in the op getlex when trying to locate &foo. Moving sub foo to within the BEGIN block helps and moving it outside of A gives: Cannot invoke this object in method at lib/A.pm6:5 Neither the rakudo optimizer nor spesh seem to be to blame.

[perl #126014] Segmentation fault on 32-bit system – "x" xx 9999999999

2015-09-07 Thread via RT
# New Ticket Created by Alex Jakimenko # Please include the string: [perl #126014] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126014 > $ perl6 -e '"x" xx 999999' Segmentation fault It seems

[perl #122716] [BUG] Segmentation fault when digging into the package namespace of a type capture in Rakudo

2015-08-29 Thread Will Coleda via RT
On Sat Jan 24 14:17:53 2015, barto...@gmx.de wrote: > The segfaults are mostly gone. Only on parrot there is a Null PMC > Access, but only for two of the four examples. With said two examples > there is an (non segfaulting) error on Moar and JVM as well: > > $ perl6 -e 'role S[::N] { N::x }' ##

[perl #115270] [BUG] Segmentation fault for some code in Rakudo

2015-08-03 Thread Will Coleda via RT
On Tue Apr 14 13:00:36 2015, FROGGS.de wrote: > moar seems happy now: > > $ echo -e 'my \\a = any set <1 2 3>; \n say 1 ~~ a' | ./perl6-m > any(set(1, 2, 3)) > 0 > > JVM still broken here, I changed the REPL's ">" to "%" to not treat it > as a replied msg: > $ echo -e 'my \\a = any set <1 2 3>; \

[perl #116691] [BUG] Segmentation fault when string-repeating (infix:) ridiculously long strings in Rakudo

2015-08-03 Thread Will Coleda via RT
On Thu Apr 16 09:22:35 2015, FROGGS.de wrote: > On MoarVM we get an error message instead: > m: (1, 3, *x* ... 233)[1..4] > rakudo-moar 67df04: OUTPUT«===SORRY!===␤repeat count > 1073741824 > arbitrarily unsupported...␤» The JVM runs out of memory instead: 15:51 <[Coke]> r: (1, 3, *x* ... 233)[1.

[perl #123789] [BUG] Segmentation fault when calling a routine having a native parameter with a type object argument in Rakudo

2015-02-10 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #123789] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=123789 > m: sub foo(int:U $x) { $x }; rakudo-moar f53a94: ( no output ) m: sub foo(int:U $x) {

[perl #122716] [BUG] Segmentation fault when digging into the package namespace of a type capture in Rakudo

2015-01-24 Thread Christian Bartolomaeus via RT
The segfaults are mostly gone. Only on parrot there is a Null PMC Access, but only for two of the four examples. With said two examples there is an (non segfaulting) error on Moar and JVM as well: $ perl6 -e 'role S[::N] { N::x }' ## no error on Moar, Parrot and JVM $ perl6 -e 'sub foo(::N) {

[perl #114228] Segmentation fault/GC assertion failure when using NativeCall

2014-12-17 Thread Christian Bartolomaeus via RT
After asking the author, I'm closing this ticket: < bartolin> hoelzro: I stumbled over an old ticket from you: RT #114228. Since the failing code is not included and the links don't work anymore, the ticket doesn't lead anywhere (IMHO). would you mind if I close the ticket? < hoelzro> bartolin:

[perl #122716] [BUG] Segmentation fault when digging into the package namespace of a type capture in Rakudo

2014-09-06 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #122716] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=122716 > Oooh, I got a segfault! https://gist.github.com/Nami-Doc/f0232a94cec52f0ec14c <- this s

[perl #115184] Segmentation Fault on 'try { CATCH { ~$! }; die }'

2014-01-14 Thread Will Coleda via RT
On Wed Nov 13 19:15:34 2013, coke wrote: > On Mon Oct 08 13:45:22 2012, pawel.pab...@implix.com wrote: > > rakudo: try { CATCH { ~$! }; die } # shortest form that > > segfaults on my machine > > rakudo 870d18: OUTPUT«(signal SEGV)» > > rakudo: say $*PERL > > rakudo 870d18: OUTPUT«("name" => "ra

[perl #115184] Segmentation Fault on 'try { CATCH { ~$! }; die }'

2013-11-13 Thread Will Coleda via RT
On Mon Oct 08 13:45:22 2012, pawel.pab...@implix.com wrote: > rakudo: try { CATCH { ~$! }; die } # shortest form that > segfaults on my machine > rakudo 870d18: OUTPUT«(signal SEGV)» > rakudo: say $*PERL > rakudo 870d18: OUTPUT«("name" => "rakudo", "compiler" => > {"name" => "rakudo", "ver" =>

[perl #115270] [BUG] Segmentation fault for some code in Rakudo

2013-08-02 Thread Will Coleda via RT
On Mon Oct 15 04:19:04 2012, masak wrote: > oh btw, I found this while you were away :) > echo -e 'my \\a = any set <1 2 3>; \n say 1 ~~ a' | perl6 > Segmentation fault (core dumped) > works fine if you omit the \n, though. > has it been RT'd? > I

[perl #116691] [BUG] Segmentation fault when string-repeating (infix:) ridiculously long strings in Rakudo

2013-02-08 Thread Carl Mäsak
x27; /usr/local/bin/nom: line 3: 5894 Segmentation fault /home/masak/ours/nom-rakudo/install/bin/perl6 "$@" $ nom -e '.say for (1, 3, *x* ... 233)[1..3]' 3 111 333 (cue

[perl #115270] [BUG] Segmentation fault for some code in Rakudo

2012-10-15 Thread Carl Mäsak
a = any set <1 2 3>; \n say 1 ~~ a' | perl6 Segmentation fault (core dumped) works fine if you omit the \n, though. has it been RT'd? I've been too busy trying to break rakudo to file bugs :P * masak submits rakudobug

[perl #115184] Segmentation Fault on 'try { CATCH { ~$! }; die }'

2012-10-08 Thread via RT
# New Ticket Created by Paweł Pabian # Please include the string: [perl #115184] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=115184 > rakudo: try { CATCH { ~$! }; die } # shortest form that segfaults on my machine

Re: Segmentation fault while trying to build Rakudo

2012-08-29 Thread Nicholas Clark
On Wed, Aug 29, 2012 at 11:24:24AM -0500, Patrick R. Michaud wrote: > On Mon, Aug 27, 2012 at 12:16:08AM +0300, Gabor Szabo wrote: > > After updating Rakudo to the latest and increasing the swap disk to 3 > > Gb I get this Segmentation fault. > > > > /home/gabor/work/

Re: Segmentation fault while trying to build Rakudo

2012-08-29 Thread Patrick R. Michaud
On Mon, Aug 27, 2012 at 12:16:08AM +0300, Gabor Szabo wrote: > After updating Rakudo to the latest and increasing the swap disk to 3 > Gb I get this Segmentation fault. > > /home/gabor/work/rakudo_b/install/bin/parrot --library=src/stage0 > src/stage0/nqp.pbc \ > --t

Re: Segmentation fault while trying to build Rakudo

2012-08-26 Thread Gabor Szabo
After updating Rakudo to the latest and increasing the swap disk to 3 Gb I get this Segmentation fault. Gabor cd src/6model/reprs && cc -c -o CStr.o -I../../../src/pmc -I/home/gabor/work/rakudo_b/install/include/parrot/4.4.0-devel -I/home/gabor/work/rakudo_b/install/include/parrot/4.4

Segmentation fault while trying to build Rakudo

2012-08-14 Thread Gabor Szabo
ge1/nqpmo.pbc] Segmentation fault (core dumped) Command failed (status 512): make Command failed (status 512): /usr/bin/perl Configure.pl --with-parrot=/home/gabor/work/rakudo_b/install/bin/parrot --make-install This is an 64 bit Ubuntu 12.4 VPS (hosted on Linode) with 512 Mb memory and 1 Gb swap sp

[perl #113394] Returning from an exhausted routine causes segmentation fault

2012-05-27 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #113394] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=113394 > 09:47 < moritz> p6: sub f { gather loop { take 1; return } }; say f 09:47 <+p6eval

[perl #112906] Enum type object invocation leads to segmentation fault

2012-05-13 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #112906] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=112906 > < moritz> r: enum day (:Sun(1), 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'); say day

[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 > &g

[perl #101912] Buf code Segmentation fault

2011-10-21 Thread via RT
# New Ticket Created by Paweł Pabian # Please include the string: [perl #101912] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=101912 > [19:58] everyone: can you please confirm segfault in this code on your machines

[perl #99938] [BUG] Segmentation fault when declaring state variable outside of a routine in Rakudo

2011-09-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #99938] # in the subject line of all future correspondence about this issue. # https://rt.perl.org:443/rt3/Ticket/Display.html?id=99938 > nom: state $blar; nom 6fd077: OUTPUT«(signal SEGV)» epic fel :) * masak submits

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

2010-08-23 Thread Gabor Szabo
I >> enter a response I get a Segmentation fault. >> >> Gabor >> >> >> #!/usr/bin/perl >> use strict; >> use warnings; >> >> >> # Needs two environment variables: >> # PARROT_DIR needs to point to the directory where par

[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 > &g

Re: [perl #68788] segmentation fault on the 'say 1..{$_}'

2009-08-30 Thread Илья
Hi, actually, I expected some sort of error, but no segaful 2009/8/30 fREW Schmidt via RT : > What did you expect this to produce?  Generally speaking I would have > tried to do 1..$_, but maybe you are doing something different. >

[perl #68788] segmentation fault on the 'say 1..{$_}'

2009-08-26 Thread via RT
# New Ticket Created by Ilya Belikin # Please include the string: [perl #68788] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68788 > Hi there, this code produce segmentation fault on the Rakudo bd51ce26: sa

[perl #68554] Segmentation fault from { say $!.WHAT }

2009-08-15 Thread Kyle Hasselbacher
# New Ticket Created by "Kyle Hasselbacher" # Please include the string: [perl #68554] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=68554 > These segmentation fault: perl6 -e 'try { 1/0 }; say $!.WHAT&

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

2009-03-24 Thread via RT
ide. 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 warnings; # Needs two environment variables: # PARROT_DIR needs to point to the directory where parrot was checked out # export LD_LIBRARY_PATH=$PARROT_

[perl #64104] make()ing a range 1..$/ leads to segmentation fault

2009-03-23 Thread via RT
;matched' !! 'no match'; # Output: in value() in TOP() Segmentation fault in gdb: Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7f869d59c6f0 (LWP 10687)] 0x7f869cd7bcac in Parrot_pcc_invoke_from_sig_object (interp=Cannot access memory at address 0x7ff

Re: [perl #62176] wierd segmentation fault with correct code.

2009-01-11 Thread Richard Hainsworth
Thanks for the response. I downloaded parrot onto my office machine (35397), and tested as you suggested. All worked and in fact I couldnt reproduce the bug!!! :(( I will try again with parrot at home with version 35286 This happened to me before - I got a segmentation fault working with a

Re: [perl #62176] wierd segmentation fault with correct code.

2009-01-11 Thread Richard Hainsworth
segmentation fault with the following program (also attached). I am using rakudo from parrot 35286 When I run the program below, it runs and I get almost the right answer (but uninitialised values and incorrect output). But when I comment out the 'say' line and uncomment the line below i

[perl #62176] wierd segmentation fault with correct code.

2009-01-11 Thread Will Coleda via RT
On Sat Jan 10 12:19:38 2009, richardh wrote: > Getting a wierd segmentation fault with the following program (also > attached). > > I am using rakudo from parrot 35286 > > When I run the program below, it runs and I get almost the right > answer > (but uninitialised value

[perl #62176] wierd segmentation fault with correct code.

2009-01-11 Thread via RT
# New Ticket Created by Richard Hainsworth # Please include the string: [perl #62176] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=62176 > Getting a wierd segmentation fault with the following program (also attac

[perl #62176] wierd segmentation fault with correct code.

2009-01-10 Thread Patrick R. Michaud via RT
On Sat Jan 10 12:19:38 2009, richardh wrote: > Getting a wierd segmentation fault with the following program (also > attached). > > I am using rakudo from parrot 35286 > [...] Try running the script using parrot directly instead of the "perl6" binary, and let us

Re: [perl #60506] Segmentation fault in t/pmc/pmc.t

2008-11-24 Thread Moritz Lenz
James Keenan via RT wrote: > On Thu Nov 13 13:57:34 2008, [EMAIL PROTECTED] wrote: >> On Thursday 13 November 2008 13:54:36 James Keenan via RT wrote: >> >> > At r32625, I am observing this on Darwin/PPC -- but it passes on >> > Linux/i386. Darwin below. >> >> Is the backtrace the same as the

Re: [perl #60506] Segmentation fault in t/pmc/pmc.t

2008-11-13 Thread chromatic
On Thursday 13 November 2008 13:54:36 James Keenan via RT wrote: > At r32625, I am observing this on Darwin/PPC -- but it passes on > Linux/i386. Darwin below. Is the backtrace the same as the one Moritz posted? -- c

[perl #60506] Segmentation fault in t/pmc/pmc.t

2008-11-13 Thread via RT
t t/pmc/pmc_3.pasm All names ok. Segmentation fault With this backtrace: (gdb) bt #0 0xb7c07069 in Parrot_cx_delete_task (interp=0x8e6a048, task=0x8eddfac) at src/scheduler.c:388 #1 0xb7d57e64 in Parrot_Timer_destroy (interp=0x8e6a048, pmc=0x8eddfac) at ./src/pmc/timer.pmc:191 #2 0xb7bb7

[perl #57116] [BUG] make: *** [perl6] Segmentation fault

2008-09-05 Thread Christoph Otto via RT
On Tue Jul 29 00:38:29 2008, tuxdna wrote: > I found that it is now working correctly in the latest revision 29838. resolved

Re: [perl #57626] [BUG] perl6 -e 'say "hello"' ==> Segmentation fault

2008-08-05 Thread chromatic
t seems that every program that starts with 'say' produces a > Segmentation fault on my system > * I will happily provide additional info (if requested) or test newer > versions on my PC to verify that the bug is present/gone. I just fixed one such bug in optimized builds (r300

[perl #57626] [BUG] perl6 -e 'say "hello"' ==> Segmentation fault

2008-08-05 Thread [EMAIL PROTECTED] (via RT)
icu-dev, libicu38 packages before configuration * cd parrot-0.6.4; perl Configure.pl; make; cd languages/perl6; make perl6 * It seems that every program that starts with 'say' produces a Segmentation fault on my system * I will happily provide additional info (if requested) or test newer v

[perl #57330] 'exit' from deep within rakudo call stack causes segmentation fault

2008-07-27 Thread Carl Mäsak
erl6 -e 'exit' $ ./perl6 -e 'sub a { exit }; a()' But this doesn't: $ ./perl6 -e 'sub a { b() }; sub b { exit }; a()' perl6(26935) malloc: *** error for object 0x27c4c40: double free *** set a breakpoint in malloc_error_break to debug Segmentation fault

[perl #57116] [BUG] make: *** [perl6] Segmentation fault

2008-07-19 Thread Saleem A. Ansari (via RT)
erl6/perl6 ./perl6 /usr/bin/perl -MExtUtils::Command -e ExtUtils::Command::chmod 0755 ./perl6 ./perl6 -e"say 'Hello, world.'" make: *** [perl6] Segmentation fault make: *** Deleting file `perl6' There was some vtable initialized wrongly with 0xdeadbeef value inside src/exception

Re: make: *** [perl6] Segmentation fault

2008-07-18 Thread tuxdna
$ languages/perl6/perl6 -e'say "Hello"' Segmentation fault $ gdb languages/perl6/perl6 GNU gdb Red Hat Linux (6.6-35.fc8rh) ... (gdb) run -e'say "Hello"' Starting program: /home/saleem/work/compiler/parrot/languages/perl6/perl6 Program received signal

Re: make: *** [perl6] Segmentation fault

2008-07-17 Thread Andy_Bach
hello > [EMAIL PROTECTED] parrot]$ languages/perl6/perl6 -e 'say "hello"' Segmentation fault Hmm: [EMAIL PROTECTED] parrot]$ languages/perl6/perl6 -e ' say "hello"' hello [EMAIL PROTECTED] parrot]$ languages/perl6/perl6 -e 'say "hello"'

make: *** [perl6] Segmentation fault

2008-07-17 Thread tuxdna
/languages/perl6' /usr/bin/perl -MExtUtils::Command -e cp languages/perl6/perl6 ./perl6 /usr/bin/perl -MExtUtils::Command -e ExtUtils::Command::chmod 0755 ./perl6 ./perl6 -e"say 'Hello, world.'" make: *** [perl6] Segmentation fault make: *** Deleting file `perl6' This als

Re: [perl #55164] [BUG] segmentation fault in rakudo's test

2008-07-01 Thread Moritz Lenz
Patrick R. Michaud via RT wrote: > Is this still segfaulting in the current head? No, seems fixed. Moritz -- Moritz Lenz http://moritz.faui2k3.org/ | http://perl-6.de/

[perl #55164] [BUG] segmentation fault in rakudo's test

2008-07-01 Thread Patrick R. Michaud via RT
Is this still segfaulting in the current head? Pm

Re: [perl #55164] [BUG] segmentation fault in rakudo's test

2008-06-02 Thread Moritz Lenz
Will Coleda via RT wrote: > On Sun Jun 01 11:06:10 2008, [EMAIL PROTECTED] wrote: >> Hi, >> >> parrot + perl6 as of r28017 segfault for me while running >> t/spec/S29-array/push.rakudo. >> Attached is a reduced test case that produces an assertion failure with >> --runcore=gcdebug: >> >> $ ../../

[perl #55164] [BUG] segmentation fault in rakudo's test

2008-06-02 Thread Will Coleda via RT
On Sun Jun 01 11:06:10 2008, [EMAIL PROTECTED] wrote: > Hi, > > parrot + perl6 as of r28017 segfault for me while running > t/spec/S29-array/push.rakudo. > Attached is a reduced test case that produces an assertion failure with > --runcore=gcdebug: > > $ ../../parrot --runcore=gcdebug perl6.pbc p

[perl #55164] segmentation fault in rakudo's test

2008-06-01 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #55164] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=55164 > Hi, parrot + perl6 as of r28017 segfault for me while running t/spec/S29-array/push.raku

Lua PMC & Garbage Collection Segmentation fault

2006-03-05 Thread François PERRAD
Hi all, A Segmentation fault occurs in the languages/lua/t/tables_3.pir. This test is a simple table creation (with 1000 items) : a = {} for i=1,1000 do a[i] = i*2 end print(a[9]) This problem started with revision 11586. In the previous Lua PMC implementation (r11478

Re: [perl #36852] [PATCH] imcc/main.c - to fix segmentation fault on "-E (--pre-process-only)" option

2005-08-11 Thread Leopold Toetsch
[EMAIL PROTECTED] (via RT) wrote: Objective: Parrot stops for segmentation fault when "-E (--pre-process-only)" option is specified. This patch fixes this bug. Thanks, applied -r8914 (Please not that the preprocessor is currently not uptodate and doesn't process all t

[perl #36852] [PATCH] imcc/main.c - to fix segmentation fault on "-E (--pre-process-only)" option

2005-08-10 Thread via RT
# New Ticket Created by [EMAIL PROTECTED] # Please include the string: [perl #36852] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/rt3/Ticket/Display.html?id=36852 > Objective: Parrot stops for segmentation fault when "-E (--pre-proc

Re: Parrot Segmentation Fault

2005-04-11 Thread Leopold Toetsch
Cory Spencer <[EMAIL PROTECTED]> wrote: > The latest Parrot CVS checkout segfaults for me on the following code: [ ... ] > It appears that the "store_lex" opcode is to blame - when no lexical pad > has been created and you attempt to store a lexical, the SEGV is > generated. Yep. Throws an exce

Parrot Segmentation Fault

2005-04-07 Thread Cory Spencer
The latest Parrot CVS checkout segfaults for me on the following code: .sub _main .local pmc foo foo = new Integer foo = 3 # new_pad 0 store_lex "foo", foo end .end It appears that the "store_lex" opcode is to blame - when no lexical pad has been created and you att

Re: Segmentation fault

2004-01-13 Thread Leopold Toetsch
Chris Allan <[EMAIL PROTECTED]> wrote: > Hello, > I've just started trying to experiment with parrot, and I keep getting > segmentation faults, eg when running the following one-liner: > set I0, 7 end is missing. Program flow just continues with executing garbage. > I also noticed what seems

Segmentation fault

2004-01-13 Thread Chris Allan
[New Thread 16384 (LWP 16833)] [New Thread 32769 (LWP 16834)] [New Thread 16386 (LWP 16835)] Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 16384 (LWP 16833)] 0x0807f9ec in runops_slow_core (interpreter=0x823bc90, pc=0x827ed34) at src/runops_cores.c:116 116