# New Ticket Created by Michael Chajkowski
# Please include the string: [perl #123484]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org/Ticket/Display.html?id=123484 >
I have compiled Rakudo Star from the source package and it reports:
This is perl6 version 2014.09 built on MoarVM version 2014.09
The system fifo read crashes with the error included at the bottom. The
test was done with two scripts in two separate xterm instances.
Thank you for all of the wonderful work.
Michael Chajkowski
** One shell running this:
my $pipe = 'test_pipe'.IO;
for (1..Inf) -> $iter {
spurt $pipe, sprintf "This is it %00d\n", $iter;
sleep 1;
};
** Another shell running this:
my $pipe = 'test_pipe'.IO;
while 1 {
$pipe.get.say;
# $pipe.lines.say;
sleep 1;
}
** Using .get
Failed to seek in filehandle: 29
in method eof at src/gen/m-CORE.setting:14679
in method get at src/gen/m-CORE.setting:14687
in block <unit> at ./test.p6:11
** Using .lines
Failed to seek in filehandle: 29
in code at src/gen/m-CORE.setting:14716
in block at src/gen/m-CORE.setting:8328
in block at src/gen/m-CORE.setting:8332
in method reify at src/gen/m-CORE.setting:8358
in method reify at src/gen/m-CORE.setting:8021
in method reify at src/gen/m-CORE.setting:8021
in method reify at src/gen/m-CORE.setting:8122
in method reify at src/gen/m-CORE.setting:8021
in method reify at src/gen/m-CORE.setting:8021
in method gimme at src/gen/m-CORE.setting:8508
in method eager at src/gen/m-CORE.setting:8482
in method join at src/gen/m-CORE.setting:1817
in method gist at src/gen/m-CORE.setting:8920
in sub say at src/gen/m-CORE.setting:15179
in method say at src/gen/m-CORE.setting:1136
in block <unit> at ./test.p6:11