Re: [perl #39778] Segfault when using a Namespace with an Iterator

2006-08-03 Thread Leopold Toetsch
Am Donnerstag, 3. August 2006 22:27 schrieb Chip Salzenberg: > So, is the namespace iteration working now ... at least enough to close the > ticket that says "segfault" in large friendly lettes? The segfault in the first place wasn't related to namespaces at all, more to hash iteration abuse/bug/

Re: [perl #39778] Segfault when using a Namespace with an Iterator

2006-08-03 Thread Chip Salzenberg
So, is the namespace iteration working now ... at least enough to close the ticket that says "segfault" in large friendly lettes? -- Chip Salzenberg <[EMAIL PROTECTED]>

Re: [perl #39778] Segfault when using a Namespace with an Iterator

2006-07-17 Thread Leopold Toetsch
Am Montag, 17. Juli 2006 03:30 schrieb Bob Rogers: >    BTW, it doesn't seem right that I can run Parrot for only a second or > two and get more than 300K stack frames deep.  Isn't there a way to > limit the stack to something sane, since more than a few MB of C stack > usage is a pretty sure sign

[perl #39778] Segfault when using a Namespace with an Iterator

2006-07-16 Thread Bob Rogers
From: "Matt Diephouse via RT" <[EMAIL PROTECTED]> Date: Sun, 16 Jul 2006 14:37:39 -0700 mdiep wrote: > Trying to use an Iterator with a NameSpace makes Parrot segfault: > >mini:~/Projects/parrot mdiep$ cat test.pir >.sub main :main > .local pmc iter, ns >

[perl #39778] Segfault when using a Namespace with an Iterator

2006-07-16 Thread Matt Diephouse via RT
mdiep wrote: > Trying to use an Iterator with a NameSpace makes Parrot segfault: > >mini:~/Projects/parrot mdiep$ cat test.pir >.sub main :main > .local pmc iter, ns > ns = get_namespace > > iter = new .Iterator, ns >loop: > unless iter goto loop_end > $P0 = s

Re: [perl #39778] Segfault when using a Namespace with an Iterator

2006-07-10 Thread Chip Salzenberg
On Sun, Jul 09, 2006 at 11:52:23PM -0700, Matt Diephouse wrote: > Trying to use an Iterator with a NameSpace makes Parrot segfault Ouch. The current namespace class is typed but in a silly way -- not with name mangling but with actually storing two things with exactly the same name. (One being a

[perl #39778] Segfault when using a Namespace with an Iterator

2006-07-09 Thread via RT
# New Ticket Created by Matt Diephouse # Please include the string: [perl #39778] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=39778 > Trying to use an Iterator with a NameSpace makes Parrot segfault: mini:~/Projects/