1
1

odls: fix handling of the orte fork agent

Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp>
Этот коммит содержится в:
Gilles Gouaillardet 2017-05-08 16:07:13 +09:00
родитель ee4ce13e16
Коммит 16fc0996e6
2 изменённых файлов: 6 добавлений и 2 удалений

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

@ -18,6 +18,8 @@
* Copyright (c) 2013-2017 Intel, Inc. All rights reserved.
* Copyright (c) 2017 Rutgers, The State University of New Jersey.
* All rights reserved.
* Copyright (c) 2017 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
*
* $COPYRIGHT$
*
@ -452,7 +454,7 @@ static int do_child(orte_odls_spawn_caddy_t *cd, int write_fd)
}
}
execve(cd->app->app, cd->argv, cd->env);
execve(cd->cmd, cd->argv, cd->env);
send_error_show_help(write_fd, 1,
"help-orte-odls-alps.txt", "execve error",
orte_process_info.nodename, cd->app->app, strerror(errno));

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

@ -18,6 +18,8 @@
* Copyright (c) 2013-2017 Intel, Inc. All rights reserved.
* Copyright (c) 2017 Rutgers, The State University of New Jersey.
* All rights reserved.
* Copyright (c) 2017 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
*
* $COPYRIGHT$
*
@ -431,7 +433,7 @@ static int do_child(orte_odls_spawn_caddy_t *cd, int write_fd)
}
/* Exec the new executable */
execve(cd->app->app, cd->argv, cd->env);
execve(cd->cmd, cd->argv, cd->env);
getcwd(dir, sizeof(dir));
send_error_show_help(write_fd, 1,
"help-orte-odls-default.txt", "execve error",