1
1
openmpi/orte/mca/pls/bproc_orted
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
..
configure.m4 Update the copyright notices for IU and UTK. 2005-11-05 19:57:48 +00:00
configure.params Update the copyright notices for IU and UTK. 2005-11-05 19:57:48 +00:00
Makefile.am Update the copyright notices for IU and UTK. 2005-11-05 19:57:48 +00:00
pls_bproc_orted_component.c Next step in the project split, mainly source code re-arranging 2006-02-12 01:33:29 +00:00
pls_bproc_orted.c Fix for ticket #92, bproc stdin being borked. The problem was that we were 2006-07-08 21:18:24 +00:00
pls_bproc_orted.h Add ability to trap and propagate SIGUSR1/2 to remote processes. There are a number of small changes that hit a bunch of files: 2006-06-08 18:27:17 +00:00
README Add some README's to describe what these components are fore. 2005-10-04 15:14:23 +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.