1
1

Under Windows, tell the orted that the proc has met its IOF termination conditions when launched since Windows does its own IO forwarding.

This commit was SVN r20402.
Этот коммит содержится в:
Ralph Castain 2009-02-03 16:41:07 +00:00
родитель c0e2ccb591
Коммит f1084d6b84

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

@ -165,6 +165,12 @@ static int odls_process_fork_local_proc(orte_app_context_t* context,
child->pid = pid;
child->alive = true;
/* Windows automatically forwards IO, so we don't need to do so here. However,
* we need to flag that IO termination conditions are met so that the daemon
* knows the proc is done
*/
orte_odls_base_notify_iof_complete(&child->name);
return ORTE_SUCCESS;
}