1
1
openmpi/src/mpi/c/comm_set_name.c

69 строки
1.5 KiB
C
Исходник Обычный вид История

2003-11-22 19:36:58 +03:00
/*
* $HEADER$
2003-11-22 19:36:58 +03:00
*/
#include "ompi_config.h"
2003-11-22 19:36:58 +03:00
#include <string.h>
#include "util/strncpy.h"
#include "include/totalview.h"
#include "mpi.h"
#include "mpi/c/bindings.h"
#include "runtime/runtime.h"
#include "communicator/communicator.h"
2003-11-22 19:36:58 +03:00
#if OMPI_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
#pragma weak MPI_Comm_set_name = PMPI_Comm_set_name
#endif
2003-11-22 19:36:58 +03:00
#if OMPI_PROFILING_DEFINES
#include "mpi/c/profile/defines.h"
#endif
static const char FUNC_NAME[] = "MPI_Comm_set_name";
int MPI_Comm_set_name(MPI_Comm comm, char *name) {
2003-11-22 19:36:58 +03:00
ompi_communicator_t* comp;
2003-11-22 19:36:58 +03:00
if ( MPI_PARAM_CHECK ) {
OMPI_ERR_INIT_FINALIZE(FUNC_NAME);
if ( MPI_COMM_NULL == comm || ompi_comm_invalid ( comm ) ) {
return OMPI_ERRHANDLER_INVOKE ( MPI_COMM_WORLD, MPI_ERR_COMM,
FUNC_NAME);
}
if ( NULL == name ) {
return OMPI_ERRHANDLER_INVOKE ( comm, MPI_ERR_ARG,
FUNC_NAME);
}
}
/* -- Thread safety entrance -- */
2003-11-22 19:36:58 +03:00
/* Copy in the name */
comp = (ompi_communicator_t*) comm;
strncpy(comp->c_name, name, MPI_MAX_OBJECT_NAME);
comp->c_name[MPI_MAX_OBJECT_NAME - 1] = 0;
comp->c_flags |= OMPI_COMM_NAMEISSET;
/* -- Tracing information for new communicator name -- */
#if 0
2003-11-22 19:36:58 +03:00
/* Force TotalView DLL to take note of this name setting */
++ompi_tv_comm_sequence_number;
#endif
2003-11-22 19:36:58 +03:00
#if OMPI_PROFILING_DEFINES
#include "mpi/c/profile/defines.h"
#endif
2003-11-22 19:36:58 +03:00
/* -- Thread safety exit -- */
return MPI_SUCCESS;
}