22868b9f68
This commit was SVN r28943.
45 строки
974 B
C
45 строки
974 B
C
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
|
/*
|
|
* Copyright (c) 2012-2013 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "ompi/mpi/tool/mpit-internal.h"
|
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
|
#pragma weak MPI_T_pvar_read = PMPI_T_pvar_read
|
|
#endif
|
|
|
|
#if OMPI_PROFILING_DEFINES
|
|
#include "ompi/mpi/tool/profile/defines.h"
|
|
#endif
|
|
|
|
static const char FUNC_NAME[] = "MPI_T_pvar_read";
|
|
|
|
int MPI_T_pvar_read(MPI_T_pvar_session session, MPI_T_pvar_handle handle,
|
|
void* buf)
|
|
{
|
|
int ret;
|
|
|
|
if (!mpit_is_initialized ()) {
|
|
return MPI_T_ERR_NOT_INITIALIZED;
|
|
}
|
|
|
|
if (MPI_T_PVAR_ALL_HANDLES == handle || session != handle->session) {
|
|
return MPI_T_ERR_INVALID_HANDLE;
|
|
}
|
|
|
|
mpit_lock ();
|
|
|
|
ret = mca_base_pvar_handle_read_value (handle, buf);
|
|
|
|
mpit_unlock ();
|
|
|
|
return ret;
|
|
}
|