1
1

Get rid of the useless mca_pml_base_endpoint_t and replace it by

[the well known and widely used!] mca_pml_endpoint_t.

This commit was SVN r22277.
Этот коммит содержится в:
George Bosilca 2009-12-08 17:29:54 +00:00
родитель e55f89dda7
Коммит 76222eb869
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -142,7 +142,7 @@ mca_pml_cm_add_procs(struct ompi_proc_t** procs, size_t nprocs)
}
for (i = 0 ; i < nprocs ; ++i) {
procs[i]->proc_pml = (struct mca_pml_base_endpoint_t*) endpoints[i];
procs[i]->proc_pml = (struct mca_pml_endpoint_t*) endpoints[i];
}
free(endpoints);

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

@ -261,7 +261,7 @@ int mca_pml_dr_add_procs(ompi_proc_t** procs, size_t nprocs)
endpoint = OBJ_NEW(mca_pml_dr_endpoint_t);
endpoint->proc_ompi = procs[i];
procs[i]->proc_pml = (struct mca_pml_base_endpoint_t*) endpoint;
procs[i]->proc_pml = (struct mca_pml_endpoint_t*) endpoint;
MCA_PML_DR_DEBUG(10, (0, "%s:%d: adding endpoint %p to proc_pml %p\n",
__FILE__, __LINE__, (void*)endpoint, (void*)procs[i]));

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

@ -57,7 +57,7 @@ struct ompi_proc_t {
/** this process' name */
orte_process_name_t proc_name;
/** PML specific proc data */
struct mca_pml_base_endpoint_t* proc_pml;
struct mca_pml_endpoint_t* proc_pml;
/** BML specific proc data */
struct mca_bml_base_endpoint_t* proc_bml;
/** architecture of this process */