Re: [perl #130951] [BUG] EVAL thread safety

2017-03-08 Thread Nicholas Clark
Thanks for the bug report. On Tue, Mar 07, 2017 at 05:12:34PM -0800, J . David Lowe wrote: > > ``` > #!/usr/bin/env perl6 > > use v6.c; > > sub MAIN { >await Promise.anyof((^2).map: { > start { > loop { > EVAL "True"; > } > } >}); > } > ``` > 2

[perl #130951] [BUG] EVAL thread safety

2017-03-07 Thread via RT
# New Ticket Created by J . David Lowe # Please include the string: [perl #130951] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130951 > On my system, this short program crashes within a few seconds of starting: ``` #!/usr/