Viewing file: base.h (1.41 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* * Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana * University Research and Technology * Corporation. All rights reserved. * Copyright (c) 2004-2011 The University of Tennessee and The University * of Tennessee Research Foundation. All rights * reserved. * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart, * University of Stuttgart. All rights reserved. * Copyright (c) 2004-2005 The Regents of the University of California. * All rights reserved. * Copyright (c) 2011 Cisco Systems, Inc. All rights reserved. * Copyright (c) 2013 Los Alamos National Security, LLC. All rights reserved. * Copyright (c) 2017 Intel, Inc. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ /** @file: */
#ifndef MCA_ODLS_BASE_H #define MCA_ODLS_BASE_H
/* * includes */ #include "orte_config.h"
#include "orte/mca/mca.h"
#include "orte/mca/odls/odls.h"
BEGIN_C_DECLS
/* * MCA framework */ ORTE_DECLSPEC extern mca_base_framework_t orte_odls_base_framework; /* * Select an available component. */ ORTE_DECLSPEC int orte_odls_base_select(void);
ORTE_DECLSPEC void orte_odls_base_start_threads(orte_job_t *jdata);
ORTE_DECLSPEC void orte_odls_base_harvest_threads(void);
END_C_DECLS #endif
|