/* * Copyright (c) 2009 Cisco Systems, Inc. All rights reserved. * $COPYRIGHT$ * * Additional copyrights may follow * * $HEADER$ */ /** * @file * */ #ifndef ORTE_RMCAST_BASIC_H #define ORTE_RMCAST_BASIC_H #include "orte_config.h" #include "opal/mca/mca.h" #include "opal/mca/base/base.h" #include "orte/mca/rmcast/rmcast.h" BEGIN_C_DECLS #define ORTE_RMCAST_BASIC_MAX_MSG_SIZE 1500 typedef struct { orte_rmcast_base_component_t super; int max_msg_size; } orte_rmcast_basic_component_t; ORTE_MODULE_DECLSPEC extern orte_rmcast_basic_component_t mca_rmcast_basic_component; extern orte_rmcast_module_t orte_rmcast_basic_module; END_C_DECLS #endif