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