-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concurrently calling say
can cause Rakudo to hang
#6501
Comments
From j.david.lowe@apple.comThis short program hangs indefinitely on my system (after making progress.) Tuning the number of threads and number of iterations can change how reliably it hangs (down to 'never' when the number of threads is < 3, for me.) ``` use v6.c; await (^6).map: -> $t { ... this is a distilled version of some tree-walking code that's misbehaving for me IRL. It's possible that I'm doing something naughty here, but I don't see how. Am I missing something? (I can eliminate the deadlock by Lock.protect-ing the inner while loop, FWIW... but I don't see why that should be necessary.) More information: ``` |
From @lizmat
Could you try if this is still the case in 2017.08? And possibly the latest development version? Also, could you try and see if “use 6.d.PREVIEW” makes a difference? |
The RT System itself - Status changed from 'new' to 'open' |
From j.david.lowe@apple.com
'use v6.d.PREVIEW' did not fix it. Switching to: ``` ... also did not fix it (with either 'use v6.c' or 'use v6.d.PREVIEW'). |
From @ugexeOn Wed, 06 Sep 2017 13:46:15 -0700, j.david.lowe@apple.com wrote:
my $foo = 0; for ^50000 { start { say $foo++ } }; Rakudo 2017.03 or earlier does not have this issue. You can also remove the `say` from the examples and they do not have this issue. gdb output: irc discussion: |
From @ugexeResolved with MoarVM/MoarVM@32322f3 but not sure how to write a test for deadlocks |
From @smlsEven simpler test-case: for ^10000 { start say $_ } For me, this almost always hangs (after printing a few dozen or few hundred lines), with the MoarVM version currently used by Rakudo nom: MoarVM version 2017.08.1-128-gde6dced But *no longer* hangs with MoarVM master (which has the fix by ugexe++): MoarVM version 2017.08.1-148-g1059eed1 \o/ Marking this ticket as TESTNEEDED. |
From @zoffixznetTests in Raku/roast@ccdbc68336 |
@zoffixznet - Status changed from 'open' to 'resolved' |
Migrated from rt.perl.org#132042 (status was 'resolved')
Searchable as RT132042$
The text was updated successfully, but these errors were encountered: