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/
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]>
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
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
>
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
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
# 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/