[mpich] MPICH primary repository branch, master, updated. v3.0.4-101-ga9640dc
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "MPICH primary repository". The branch, master has been updated via a9640dc49d25f95ffbccd04476e42c5c23d0c96e (commit) from 81ad170b491ba0bdfb7d0028b06835651adfd968 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- http://git.mpich.org/mpich.git/commitdiff/a9640dc49d25f95ffbccd04476e42c5c23... commit a9640dc49d25f95ffbccd04476e42c5c23d0c96e Author: Pavan Balaji <[email protected]> Date: Tue Apr 30 07:49:22 2013 -0500 Fix PID calculation error introduced in [e04dd4b6]. No reviewer. diff --git a/src/pm/hydra/tools/debugger/debugger.c b/src/pm/hydra/tools/debugger/debugger.c index b5449dd..408c066 100644 --- a/src/pm/hydra/tools/debugger/debugger.c +++ b/src/pm/hydra/tools/debugger/debugger.c @@ -58,7 +58,8 @@ HYD_status HYDT_dbg_setup_procdesc(struct HYD_pg * pg) if (k + np < round * proxy->node->core_count) continue; MPIR_proctable[i].host_name = HYDU_strdup(proxy->node->hostname); - MPIR_proctable[i].pid = proxy->pid[j++]; + MPIR_proctable[i].pid = proxy->pid[(proxy->node->core_count * round) + j]; + j++; if (exec->exec[0]) MPIR_proctable[i].executable_name = HYDU_strdup(exec->exec[0]); else ----------------------------------------------------------------------- Summary of changes: src/pm/hydra/tools/debugger/debugger.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) hooks/post-receive -- MPICH primary repository
participants (1)
-
noreply@mpich.org