From b1250eba3a7ac9e4a1e00a7a8de19d68a9dfb330 Mon Sep 17 00:00:00 2001 From: Shiqing Fan Date: Thu, 30 Aug 2007 15:13:08 +0000 Subject: [PATCH] - Some more to be exported. This commit was SVN r16023. --- ompi/communicator/communicator.h | 4 ++-- ompi/group/group.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ompi/communicator/communicator.h b/ompi/communicator/communicator.h index 34baf696bb..acc7bdb874 100644 --- a/ompi/communicator/communicator.h +++ b/ompi/communicator/communicator.h @@ -264,7 +264,7 @@ struct ompi_communicator_t { /** * extract the local group from a communicator */ - int ompi_comm_group (ompi_communicator_t *comm, ompi_group_t **group); + OMPI_DECLSPEC int ompi_comm_group (ompi_communicator_t *comm, ompi_group_t **group); /** * create a communicator based on a group @@ -294,7 +294,7 @@ struct ompi_communicator_t { * * @ */ - int ompi_comm_split (ompi_communicator_t *comm, int color, int key, + OMPI_DECLSPEC int ompi_comm_split (ompi_communicator_t *comm, int color, int key, ompi_communicator_t** newcomm, bool pass_on_topo); /** diff --git a/ompi/group/group.h b/ompi/group/group.h index 1935c7c264..59d86bcb93 100644 --- a/ompi/group/group.h +++ b/ompi/group/group.h @@ -215,7 +215,7 @@ void ompi_set_group_rank(ompi_group_t *group, struct ompi_proc_t *proc_pointer); /** * Abstracting MPI_Group_translate_ranks to an ompi function for internal use */ -int ompi_group_translate_ranks ( ompi_group_t *group1, +OMPI_DECLSPEC int ompi_group_translate_ranks ( ompi_group_t *group1, int n_ranks, int *ranks1, ompi_group_t *group2, int *ranks2);