2013-09-10 19:34:09 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
|
|
* All rights reserved.
|
2013-09-15 13:32:07 +04:00
|
|
|
* Copyright (c) 2013 Cisco Systems, Inc. All rights reserved.
|
2013-09-10 19:34:09 +04:00
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2013-09-10 19:34:09 +04:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2013-09-10 19:34:09 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "oshmem_config.h"
|
2013-09-15 13:32:07 +04:00
|
|
|
#include "oshmem/shmem/fortran/bindings.h"
|
2013-09-10 19:34:09 +04:00
|
|
|
#include "oshmem/include/shmem.h"
|
|
|
|
|
2013-09-17 20:39:56 +04:00
|
|
|
SHMEM_GENERATE_FORTRAN_BINDINGS_SUB (void,
|
2013-09-10 19:34:09 +04:00
|
|
|
SHMEM_FINALIZE,
|
|
|
|
shmem_finalize_,
|
|
|
|
shmem_finalize__,
|
|
|
|
shmem_finalize_f,
|
2015-06-24 06:59:57 +03:00
|
|
|
(void),
|
2013-09-10 19:34:09 +04:00
|
|
|
() )
|
|
|
|
|
2013-09-15 13:32:07 +04:00
|
|
|
void shmem_finalize_f(void)
|
2013-09-10 19:34:09 +04:00
|
|
|
{
|
|
|
|
shmem_finalize();
|
|
|
|
}
|
|
|
|
|