1
1
openmpi/oshmem/shmem/c/shmem_fence.c
2015-06-23 20:59:57 -07:00

28 строки
511 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
#include "oshmem/shmem/c/profile/defines.h"
#endif
void shmem_fence(void)
{
MCA_SPML_CALL(fence());
}