4aad386c2b
Signed-off-by: Xin Zhao <xinz@mellanox.com>
31 строка
590 B
C
31 строка
590 B
C
/*
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "oshmem_config.h"
|
|
|
|
#include "opal/runtime/opal_cr.h"
|
|
|
|
#include "oshmem/constants.h"
|
|
#include "oshmem/include/shmem.h"
|
|
#include "oshmem/runtime/runtime.h"
|
|
|
|
#if OSHMEM_PROFILING
|
|
#include "oshmem/include/pshmem.h"
|
|
#pragma weak shmem_finalize = pshmem_finalize
|
|
#include "oshmem/shmem/c/profile/defines.h"
|
|
#endif
|
|
|
|
void shmem_finalize(void)
|
|
{
|
|
OPAL_CR_FINALIZE_LIBRARY();
|
|
oshmem_shmem_finalize();
|
|
}
|
|
|