1
1
openmpi/oshmem/shmem/c/shmem_fence.c
Xin Zhao c429900cd9 OMPI/OSHMEM: add new functionality of OpenSHMEM v1.4.
Signed-off-by: Xin Zhao <xinz@mellanox.com>
2018-07-16 12:55:25 -07:00

35 строки
652 B
C

/*
* Copyright (c) 2013 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "oshmem/constants.h"
#include "oshmem/include/shmem.h"
#include "oshmem/mca/spml/spml.h"
#if OSHMEM_PROFILING
#include "oshmem/include/pshmem.h"
#pragma weak shmem_fence = pshmem_fence
#pragma weak shmem_ctx_fence = pshmem_ctx_fence
#include "oshmem/shmem/c/profile/defines.h"
#endif
void shmem_fence(void)
{
MCA_SPML_CALL(fence(oshmem_ctx_default));
}
void shmem_ctx_fence(shmem_ctx_t ctx)
{
MCA_SPML_CALL(fence(ctx));
}