1
1

Correctly propagate no-daemonize

This commit was SVN r12093.
Этот коммит содержится в:
Ralph Castain 2006-10-11 17:53:17 +00:00
родитель e5877cc459
Коммит 2da8245be0
2 изменённых файлов: 2 добавлений и 3 удалений

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

@ -47,7 +47,7 @@ static int lookup_set(char *a, char *b, char *c, int default_val,
int orte_pls_base_mca_argv(int *argc, char ***argv)
{
lookup_set("orted", "spin", NULL, 0, "--spin", argc, argv);
lookup_set("orted", "no_daemonize", NULL, 0, "--no-daemonize", argc, argv);
lookup_set("orte", "no_daemonize", NULL, 0, "--no-daemonize", argc, argv);
lookup_set("orte", "debug", NULL, 0, "--debug", argc, argv);
lookup_set("orte", "debug", "daemons", 0, "--debug-daemons", argc, argv);
lookup_set("orte", "debug", "daemons_file", 0, "--debug-daemons-file", argc, argv);

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

@ -431,8 +431,7 @@ int orterun(int argc, char *argv[])
"Whether to properly daemonize the ORTE daemons or not",
false, false, 0, &iparam);
if (iparam) {
char *tmp = mca_base_param_environ_variable("orte", NULL,
"no_daemonize");
char *tmp = mca_base_param_environ_variable("orte", "no_daemonize", NULL);
if (ORTE_SUCCESS != (rc = opal_setenv(tmp, "1", true, &environ))) {
opal_show_help("help-orterun.txt", "orterun:environ", false,
orterun_basename, tmp, "1", rc);