1
1

Send all xml output over stdout

This commit was SVN r21147.
Этот коммит содержится в:
Ralph Castain 2009-05-04 18:51:22 +00:00
родитель 5856cedc2b
Коммит fa531a842d
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -316,7 +316,7 @@ void orte_iof_hnp_read_local_handler(int fd, short event, void *cbdata)
}
} else {
/* output this to our local output */
if (ORTE_IOF_STDOUT & rev->tag) {
if (ORTE_IOF_STDOUT & rev->tag || orte_xml_output) {
orte_iof_base_write_output(&rev->name, rev->tag, data, numbytes, orte_iof_base.iof_write_stdout->wev);
} else {
orte_iof_base_write_output(&rev->name, rev->tag, data, numbytes, orte_iof_base.iof_write_stderr->wev);

Просмотреть файл

@ -173,7 +173,7 @@ static void process_msg(int fd, short event, void *cbdata)
ORTE_NAME_PRINT(&origin)));
/* output this to our local output */
if (ORTE_IOF_STDOUT & stream) {
if (ORTE_IOF_STDOUT & stream || orte_xml_output) {
orte_iof_base_write_output(&origin, stream, data, numbytes, orte_iof_base.iof_write_stdout->wev);
} else {
orte_iof_base_write_output(&origin, stream, data, numbytes, orte_iof_base.iof_write_stderr->wev);