(If you receive this twice, please excuse the double post. I'm straightening out some 
trouble
with my subscription to the list.)

I'm having some problems with pipes on Solaris.
Here is a very simple example, the tests/posix/spawn.icn program:

procedure main()
    L := pipe()  | stop("Couldn't open pipe: ", &errortext)
    system("/bin/ls -l test-dir &", , L[2])
    system("/bin/cat -n &", L[1])
    close(L[1])
    close(L[2])
    write("everything written to pipe.")
    delay(1000)
end

This produces:

bash-2.05$ ./spawn
everything written to pipe.
bash-2.05$

No output from "cat".

Can anyone else verify/replicate this problem?
My unicon is compiled from CVS as of two days ago.

Kostas


------------------------------------------------------- This SF.net email is sponsored by: The SF.net Donation Program. Do you like what SourceForge.net is doing for the Open Source Community? Make a contribution, and help us add new features and functionality. Click here: http://sourceforge.net/donate/ _______________________________________________ Unicon-group mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/unicon-group

Reply via email to