1
1
Brian Barrett 41e144c879 Fix for ticket #92, bproc stdin being borked. The problem was that we were
using a pty for everything, which drops all buffered data on the floor when
close() is called on the daemon side, meaning EOF has some issues.  Instead,
do the same thing we do for other starters that use the fork() pls -- use
a pipe/fifo for stdin and stderr and a pty for stdout.  This is good enough
for what we need and avoids most of the issues with ptys.

This commit was SVN r10692.
2006-07-08 21:18:24 +00:00
..

The bproc_orted and bproc pls components are the most recent BProc
starters.  They make the old bproc_seed starter deprecated, but that
starter is still left around because LANL needs it for some of their
older clusters.

All new work should be on the bproc_orted and bproc components.