[mpich2-commits] r5456 - in mpich2/trunk/src/pm/hydra: include ui/utils
balaji at mcs.anl.gov
balaji at mcs.anl.gov
Wed Oct 14 06:35:53 CDT 2009
Author: balaji
Date: 2009-10-14 06:35:53 -0500 (Wed, 14 Oct 2009)
New Revision: 5456
Modified:
mpich2/trunk/src/pm/hydra/include/hydra_base.h
mpich2/trunk/src/pm/hydra/ui/utils/uiu.c
Log:
Remove the pgid variable for now. It's currently unused since we don't
support dynamic processes yet. When we do, we need to figure out where
it should actually go; the current location doesn't seem correct
anyway.
Modified: mpich2/trunk/src/pm/hydra/include/hydra_base.h
===================================================================
--- mpich2/trunk/src/pm/hydra/include/hydra_base.h 2009-10-14 11:35:39 UTC (rev 5455)
+++ mpich2/trunk/src/pm/hydra/include/hydra_base.h 2009-10-14 11:35:53 UTC (rev 5456)
@@ -176,9 +176,6 @@
HYD_Env_t *user_env;
char *env_prop;
- int pgid; /* All executables with the same PGID belong to the same
- * job. */
-
struct HYD_Proxy_exec *next;
};
Modified: mpich2/trunk/src/pm/hydra/ui/utils/uiu.c
===================================================================
--- mpich2/trunk/src/pm/hydra/ui/utils/uiu.c 2009-10-14 11:35:39 UTC (rev 5455)
+++ mpich2/trunk/src/pm/hydra/ui/utils/uiu.c 2009-10-14 11:35:53 UTC (rev 5456)
@@ -148,8 +148,6 @@
status = HYDU_alloc_proxy_exec(&proxy->exec_list);
HYDU_ERR_POP(status, "unable to allocate proxy exec\n");
- proxy->exec_list->pgid = 0; /* This is the COMM_WORLD exec */
-
for (i = 0; exec_info->exec[i]; i++)
proxy->exec_list->exec[i] = HYDU_strdup(exec_info->exec[i]);
proxy->exec_list->exec[i] = NULL;
@@ -165,7 +163,6 @@
HYDU_ERR_POP(status, "unable to allocate proxy exec\n");
exec = exec->next;
- exec->pgid = 0; /* This is the COMM_WORLD exec */
for (i = 0; exec_info->exec[i]; i++)
exec->exec[i] = HYDU_strdup(exec_info->exec[i]);
More information about the mpich2-commits
mailing list