1 /* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */ 2 /* 3 * Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana 4 * University Research and Technology 5 * Corporation. All rights reserved. 6 * Copyright (c) 2004-2005 The University of Tennessee and The University 7 * of Tennessee Research Foundation. All rights 8 * reserved. 9 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, 10 * University of Stuttgart. All rights reserved. 11 * Copyright (c) 2004-2005 The Regents of the University of California. 12 * All rights reserved. 13 * Copyright (c) 2008-2012 Cisco Systems, Inc. All rights reserved. 14 * Copyright (c) 2015 Los Alamos National Security, LLC. All rights 15 * reserved. 16 * $COPYRIGHT$ 17 * 18 * Additional copyrights may follow 19 * 20 * $HEADER$ 21 */ 22 /** 23 * @file 24 * 25 * Top-level interface for \em all orte MCA components. 26 */ 27 28 #ifndef OSHMEM_MCA_H 29 #define OSHMEM_MCA_H 30 31 #include "oshmem_config.h" 32 #include "opal/mca/mca.h" 33 34 #define OSHMEM_MCA_BASE_VERSION_2_1_0(type, type_major, type_minor, type_release) \ 35 MCA_BASE_VERSION_2_1_0("oshmem", OSHMEM_MAJOR_VERSION, OSHMEM_MINOR_VERSION, \ 36 OSHMEM_RELEASE_VERSION, type, type_major, type_minor, \ 37 type_release) 38 39 #endif /* OSHMEM_MCA_H */