3e55fe6f6d
Update the rsh tree spawn capability so we spawn the next wave of daemons before launching our own local procs. Add an ability to encode nodenames for large clusters with contiguous node name numbering schemes - this allows communication of all node names in a few bytes instead of tens-of-bytes/node. This commit was SVN r18338.
45 строки
1.2 KiB
C
45 строки
1.2 KiB
C
/*
|
|
* Copyright (c) 2007 Los Alamos National Security, LLC.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef MCA_ROUTED_BASE_H
|
|
#define MCA_ROUTED_BASE_H
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
#include "orte/mca/routed/routed.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
/*
|
|
* Global functions for the ROUTED
|
|
*/
|
|
|
|
ORTE_DECLSPEC int orte_routed_base_open(void);
|
|
ORTE_DECLSPEC int orte_routed_base_select(void);
|
|
ORTE_DECLSPEC int orte_routed_base_close(void);
|
|
|
|
ORTE_DECLSPEC extern int orte_routed_base_output;
|
|
ORTE_DECLSPEC extern opal_list_t orte_routed_base_components;
|
|
|
|
ORTE_DECLSPEC extern int orte_routed_base_register_sync(bool setup);
|
|
|
|
ORTE_DECLSPEC int orte_routed_base_comm_start(void);
|
|
ORTE_DECLSPEC int orte_routed_base_comm_stop(void);
|
|
ORTE_DECLSPEC extern void orte_routed_base_process_msg(int fd, short event, void *data);
|
|
ORTE_DECLSPEC extern void orte_routed_base_recv(int status, orte_process_name_t* sender,
|
|
opal_buffer_t* buffer, orte_rml_tag_t tag,
|
|
void* cbdata);
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* MCA_ROUTED_BASE_H */
|