root/oshmem/shmem/fortran/shmem_barrier_all_f.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. SHMEM_GENERATE_WEAK_BINDINGS

   1 /*
   2  * Copyright (c) 2013      Mellanox Technologies, Inc.
   3  *                         All rights reserved.
   4  * Copyright (c) 2013 Cisco Systems, Inc.  All rights reserved.
   5  * $COPYRIGHT$
   6  *
   7  * Additional copyrights may follow
   8  *
   9  * $HEADER$
  10  */
  11 
  12 #include "oshmem_config.h"
  13 #include "oshmem/shmem/fortran/bindings.h"
  14 #include "oshmem/include/shmem.h"
  15 
  16 #if OSHMEM_PROFILING
  17 #include "oshmem/shmem/fortran/profile/pbindings.h"
  18 SHMEM_GENERATE_WEAK_BINDINGS(SHMEM_BARRIER_ALL, shmem_barrier_all)
  19 #include "oshmem/shmem/fortran/profile/defines.h"
  20 #endif
  21 
  22 SHMEM_GENERATE_FORTRAN_BINDINGS_SUB (void,
  23         SHMEM_BARRIER_ALL,
  24         shmem_barrier_all_,
  25         shmem_barrier_all__,
  26         shmem_barrier_all_f,
  27         (void),
  28         () )
  29 
  30 void shmem_barrier_all_f(void)
  31 {
  32     shmem_barrier_all();
  33 }
  34 

/* [<][>][^][v][top][bottom][index][help] */