https://issues.dlang.org/show_bug.cgi?id=7446

Atila Neves <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #4 from Atila Neves <[email protected]> ---
A trivial workaround of course is to do this:


void fileWriter() {
   // Write loop
   for (;;) {
       try {
           auto buffer = receiveOnly!(immutable(ubyte)[])();
           stdout.rawWrite(buffer);
       } catch(OwnerTerminated _) {
           return;
       }
   }
}

--

Reply via email to