1
1
openmpi/orte/mca/rmcast/udp/rmcast_udp.h
2010-01-13 23:01:25 +00:00

40 строки
674 B
C

/*
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
/**
* @file
*
*/
#ifndef ORTE_RMCAST_UDP_H
#define ORTE_RMCAST_UDP_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_UDP_MAX_MSG_SIZE 1500
typedef struct {
orte_rmcast_base_component_t super;
int max_msg_size;
} orte_rmcast_udp_component_t;
ORTE_MODULE_DECLSPEC extern orte_rmcast_udp_component_t mca_rmcast_udp_component;
extern orte_rmcast_module_t orte_rmcast_udp_module;
END_C_DECLS
#endif