1
1

* so it turns out that you actually have to increment the counter in order

to fill in the entire array.

  This should fix the random badness seen at the end of mpirun if you
  launched on more than one machine

This commit was SVN r3517.
Этот коммит содержится в:
Brian Barrett 2004-11-04 21:39:46 +00:00
родитель 705065888f
Коммит 09bd66a636

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

@ -287,7 +287,7 @@ mca_pcm_base_job_list_get_all_starters(mca_pcm_base_job_list_t *me,
pid_item != ompi_list_get_end(jobs_entry->pids) ;
pid_item = ompi_list_get_next(pid_item)) {
pids_entry = (mca_pcm_base_pids_t*) pid_item;
(*pids)[i] = pids_entry->starter;
(*pids)[i++] = pids_entry->starter;
}
}