2013-04-24 19:59:23 +04:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2012-2013 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2014-03-12 17:17:54 +04:00
|
|
|
* Copyright (c) 2014 Cisco Systems, Inc. All rights reserved.
|
2013-04-24 19:59:23 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2013-07-16 20:03:33 +04:00
|
|
|
#include "ompi/mpi/tool/mpit-internal.h"
|
|
|
|
|
|
|
|
#if OPAL_HAVE_WEAK_SYMBOLS && OMPI_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_T_pvar_reset = PMPI_T_pvar_reset
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if OMPI_PROFILING_DEFINES
|
|
|
|
#include "ompi/mpi/tool/profile/defines.h"
|
|
|
|
#endif
|
2013-04-24 19:59:23 +04:00
|
|
|
|
|
|
|
|
|
|
|
int MPI_T_pvar_reset(MPI_T_pvar_session session, MPI_T_pvar_handle handle)
|
|
|
|
{
|
2013-07-16 20:02:13 +04:00
|
|
|
int ret;
|
|
|
|
|
2013-04-24 19:59:23 +04:00
|
|
|
if (!mpit_is_initialized ()) {
|
|
|
|
return MPI_T_ERR_NOT_INITIALIZED;
|
|
|
|
}
|
|
|
|
|
2013-07-16 20:02:13 +04:00
|
|
|
mpit_lock ();
|
|
|
|
|
|
|
|
if (MPI_T_PVAR_ALL_HANDLES == handle) {
|
|
|
|
OPAL_LIST_FOREACH(handle, &session->handles, mca_base_pvar_handle_t) {
|
|
|
|
/* Per MPI 3.0: ignore read-only variables when resetting all
|
|
|
|
handles. */
|
|
|
|
if (!mca_base_pvar_is_readonly (handle->pvar) &&
|
|
|
|
MPI_SUCCESS != mca_base_pvar_handle_reset (handle)) {
|
|
|
|
ret = MPI_T_ERR_PVAR_NO_WRITE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ret = mca_base_pvar_handle_reset (handle);
|
|
|
|
}
|
|
|
|
|
|
|
|
mpit_unlock ();
|
|
|
|
|
2013-10-23 19:47:15 +04:00
|
|
|
return ompit_opal_to_mpit_error (ret);
|
2013-04-24 19:59:23 +04:00
|
|
|
}
|