[perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread James Keenan via RT
FWIW, here is a data point: What happens on my Darwin/PPC (10.4) Mac at auto::aio: On Darwin, Configure.pl reports that AIO is unsupported. If I hack up config/auto/aio.pm to print the content of the $@ inside _first_probe_for_aio() -- i.e., expose what the C probe in config/auto/aio/aio.in said

Re: [perl #58578] [BUG] Segementation fault after a ~500 regex compilations + matches

2008-09-04 Thread chromatic
On Thursday 04 September 2008 17:43:55 chromatic wrote: > Run it through GDB, and it looks like Parrot runs out of stack space > recursively throwing exceptions. If someone modifies Rakudo not to catch > the topmost exception, I bet we could track this down faster. ... and here's what I think th

Re: [perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread Patrick R. Michaud
On Thu, Sep 04, 2008 at 04:52:34PM -0700, James Keenan via RT wrote: > I applied the patch attached, aio.in.revised.patch.txt, in r30771. I > set the 'sleep' to 4 seconds. All the tests have been reactivated. Thanks. > This is a patch in the sense of "bandaid". What is it about the letter > 'K

Re: [perl #58578] [BUG] Segementation fault after a ~500 regex compilations + matches

2008-09-04 Thread chromatic
On Thursday 04 September 2008 11:40:36 Moritz Lenz wrote: > # New Ticket Created by Moritz Lenz > # Please include the string: [perl #58578] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.html?id=58578 > > > > Rakudo r30754 segfau

[perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread James Keenan via RT
On Thu Sep 04 16:52:32 2008, [EMAIL PROTECTED] wrote: > > Anyone who knows more about > AIO please take a crack at this. > I should also add that since I can't reproduce the "wrong signal" on either of my OSes, someone on those OSes will have to take up the diagnosis. kid51

How may I help maintain parrot.org?

2008-09-04 Thread Alejandro Gómez de Argüello y de Laburu
Following the instructions I found in "How to Get Involved" at the parrot.org website, I hereby volunteer to help maintain said website "by updating existing pages or adding new content", or in other ways such as my skills and time allow.

[perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread James Keenan via RT
On Thu Sep 04 11:26:44 2008, pmichaud wrote: > > It does cause the auto::aio step to continue after about 10 seconds > with a message of "wrong signal". > > 1. I think 10 seconds might be a bit too long -- 4 or 5 might be better. > 2. It would be nice if "wrong signal" was suppressed, or othe

Re: new Parrot website

2008-09-04 Thread Alejandro Gómez de Argüello y de Laburu
On Thu, 04 Sep 2008 11:19:34 +0200 Allison Randal <[EMAIL PROTECTED]> wrote: > The new Parrot website http://www.parrot.org/ is now live. Please take a > look, create an account for yourself, and report any broken links you find. Attempting to upload a picture resulted in the following error mes

dtrace with parrot : ustack() gets only hexa adresses

2008-09-04 Thread Stéphane Payrard
Ha someone be successful using dtrace on parrot? When I am using ustack(), I get only hexa addresses instead of function names. When I am using bt in gdb, I got stack trace with names so I would expect the same with dtrace. I get the same results with leopard and nexanta. Is there some compiler o

[perl #58574] Rakudo chokes on ?? :

2008-09-04 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #58574] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=58574 > r30750: $ ./perl6 -e '1 ?? 2 : 3' ResizablePMCArray: Can't pop from an empty array! [...

[perl #58578] [BUG] Segementation fault after a ~500 regex compilations + matches

2008-09-04 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #58578] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=58578 > Rakudo r30754 segfaults while running some regexe tests. How to reproduce: cd languages/

Re: new Parrot website

2008-09-04 Thread Alejandro Gómez de Argüello y de Laburu
On Thu, 04 Sep 2008 11:19:34 +0200 Allison Randal <[EMAIL PROTECTED]> wrote: > The new Parrot website http://www.parrot.org/ is now live. Please take a > look, create an account for yourself, and report any broken links you find. I wanted to say something clever about irony, but I can't find the

Re: [perl #58392] Recursion and for loops interact badly in Rakudo

2008-09-04 Thread Patrick R. Michaud
On Thu, Sep 04, 2008 at 02:25:45PM -0500, Patrick R. Michaud wrote: > As of r37064, it's now possible to do this using the --target=pir > option to rakudo: > > [...] Also, it may be worth adding judicious calls to parrot_trace(1) (a rakudo built-in function) to enable/disable tracing at appropria

Re: new Parrot website

2008-09-04 Thread Allison Randal
Alejandro Gómez de Argüello y de Laburu wrote: The "How to Get Involved" page at https://www.parrot.org/dev/get-involved has a broken link: clicking on "Report or fix a bug in this website" takes me to https://www.parrot.org/dev/site.html -- which says "Page not found". The page at https://www.p

Re: [perl #58392] Recursion and for loops interact badly in Rakudo

2008-09-04 Thread Patrick R. Michaud
On Wed, Sep 03, 2008 at 11:22:42AM -0700, chromatic wrote: > On Wednesday 27 August 2008 07:26:00 Moritz Lenz wrote: > > Carl MXXsak (via RT) wrote: > > > > r30589: > > > $ cat for-loop-recursion.bug > > > sub f($l) { > > > return() if $l <= 0; > > > say "entering $l"; > > > for 1..3 {

Re: [PATCH] cygwin070patches_10

2008-09-04 Thread Moritz Lenz
Reini Urban wrote: > My daily cygwin070patches branch patch for my dear friend moritz. > Today on the menu: > * Fix hard tabs in languages/tcl/lib/Tcl/Test.pm from yesterday > * overhaul dotnet Configure + make > * add current novell mono path to dotnet test Applied as r30765, thanks. Moritz --

[perl #53040] rakudo : code generated by --target=pir does not execute in parrot

2008-09-04 Thread Patrick R. Michaud via RT
As of r30764, code generated by --target=pir now runs directly from parrot: $ cat hello.pl sub foo() { say 'hello'; } foo(); $ ./parrot perl6.pbc --target=pir --output=hello.pir hello.pl $ ./parrot hello.pir hello $ Pm

[PATCH] cygwin070patches_10

2008-09-04 Thread Reini Urban
My daily cygwin070patches branch patch for my dear friend moritz. Today on the menu: * Fix hard tabs in languages/tcl/lib/Tcl/Test.pm from yesterday * overhaul dotnet Configure + make * add current novell mono path to dotnet test -- Reini Urban http://phpwiki.org/ http://murbreak.at/ cygwin070p

Re: [perl #58576] [RFE] Allow runtime manipulation of HLL_map tables

2008-09-04 Thread Patrick R. Michaud
On Thu, Sep 04, 2008 at 12:25:36PM -0500, Patrick R. Michaud wrote: > On Thu, Sep 04, 2008 at 09:48:09AM -0700, chromatic via RT wrote: > > > I don't think we need any specialized opcodes for this -- simply > > > being able to introspect and dynamically modify the current > > > interpreter's HLL ma

Re: [perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread Patrick R. Michaud
On Thu, Sep 04, 2008 at 08:31:10AM -0700, James Keenan via RT wrote: > On Thu Sep 04 06:33:41 2008, pmichaud wrote: > > I just wanted to comment that I see this problem on my Kubuntu system as > > well -- when running Configure.pl, I consistently get to the step for > > AIO and things hang (until I

Re: [perl #58576] [RFE] Allow runtime manipulation of HLL_map tables

2008-09-04 Thread Patrick R. Michaud
On Thu, Sep 04, 2008 at 09:48:09AM -0700, chromatic via RT wrote: > > I don't think we need any specialized opcodes for this -- simply > > being able to introspect and dynamically modify the current > > interpreter's HLL mapping tables ought to be sufficient. > > > > (Introspection of HLL mappings

Re: [perl #58576] [RFE] Allow runtime manipulation of HLL_map tables

2008-09-04 Thread chromatic
On Thursday 04 September 2008 08:44:26 Patrick R. Michaud (via RT) wrote: > Currently the only (documented) way to set up HLL mapping is > by using the .HLL_map directive in PIR. However, this leads > to a bootstrapping problem of sorts when attempting to > map classes created in PIR (which often

Re: new Parrot website

2008-09-04 Thread Alejandro Gómez de Argüello y de Laburu
[Please, pardon the potential duplicate.] On Thu, 04 Sep 2008 11:19:34 +0200 Allison Randal <[EMAIL PROTECTED]> wrote: > The new Parrot website http://www.parrot.org/ is now live. Please take a > look, create an account for yourself, and report any broken links you find. I wanted to say somethi

[perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread James Keenan via RT
In r30754 I temporarily SKIPped most of the tests in t/steps/auto_aio-01.t so that you can have a free hand in patching auto::aio.

[perl #58576] [RFE] Allow runtime manipulation of HLL_map tables

2008-09-04 Thread Patrick R. Michaud (via RT)
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #58576] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=58576 > Currently the only (documented) way to set up HLL mapping is by using the .HLL_map

[perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread James Keenan via RT
On Thu Sep 04 06:33:41 2008, pmichaud wrote: > I just wanted to comment that I see this problem on my Kubuntu system as > well -- when running Configure.pl, I consistently get to the step for > AIO and things hang (until I press control-C): > > ... > auto::socklen_t - Determine whether there i

[perl #57920] [PATCH] Suggestion for Parrot Configure test of AIO

2008-09-04 Thread Patrick R. Michaud via RT
I just wanted to comment that I see this problem on my Kubuntu system as well -- when running Configure.pl, I consistently get to the step for AIO and things hang (until I press control-C): ... auto::socklen_t - Determine whether there is socklen_tyes. auto::env - Doe

[perl #58564] [BUG] Running a file leads to assertion failures in IMCC

2008-09-04 Thread via RT
# New Ticket Created by Moritz Lenz # Please include the string: [perl #58564] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=58564 > Running rakudo r30739 against the attached file (which is a stripped down version of t/bl

Re: new Parrot website

2008-09-04 Thread Allison Randal
Moritz Lenz wrote: Creating an account leads directly to the front page again, without any indication if it was successful or not. There should be a message just below the "mission statement" box and just above the first story on the main page. Possibly we should make the text red or put it

Re: new Parrot website

2008-09-04 Thread Moritz Lenz
Allison Randal wrote: > The new Parrot website http://www.parrot.org/ is now live. Please take a > look, create an account for yourself, and report any broken links you find. > > Just creating an account will allow you to create wiki pages. Creating an account leads directly to the front page ag

[perl #58560] [BUG] !flatten does not handle references

2008-09-04 Thread jason switzer
# New Ticket Created by "jason switzer" # Please include the string: [perl #58560] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=58560 > The List !flatten method does not properly recurse into references. List.pir:188 retr

new Parrot website

2008-09-04 Thread Allison Randal
The new Parrot website http://www.parrot.org/ is now live. Please take a look, create an account for yourself, and report any broken links you find. Just creating an account will allow you to create wiki pages. If you'd like to help out with content on other parts of the site, let me know and