From f70951a53d686fb04ce22c454d1147761b876084 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Fri, 3 Sep 2004 20:16:08 +0000 Subject: [PATCH] OOB has already assigned a unique name - just use it This commit was SVN r2495. --- src/mca/pcmclient/singleton/pcmclient_singleton.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/mca/pcmclient/singleton/pcmclient_singleton.c b/src/mca/pcmclient/singleton/pcmclient_singleton.c index 19c4bb66e8..05e1c650bd 100644 --- a/src/mca/pcmclient/singleton/pcmclient_singleton.c +++ b/src/mca/pcmclient/singleton/pcmclient_singleton.c @@ -27,11 +27,8 @@ init_proclist(void) (ompi_process_name_t*) malloc(sizeof(ompi_process_name_t)); if (NULL == mca_pcmclient_singleton_procs) return OMPI_ERROR; - /* BWB - when name server is running, get value from it... */ - mca_pcmclient_singleton_procs[0].cellid = 0; - mca_pcmclient_singleton_procs[0].jobid = 1; - mca_pcmclient_singleton_procs[0].vpid = 0; - + /* the oob has already assigned a unique name to the process */ + mca_pcmclient_singleton_procs[0] = mca_oob_name_self; return OMPI_SUCCESS; }