1
1
openmpi/src/mca/ns/proxy/src/ns_proxy.h
Ralph Castain 4f7febc161 NOTE: These changes may break any code that uses the ompi_process_name_t type. Please recompile and check for the changes detailed below.
Major change to the name server system to introduce the OOB interface. Changed the ompi_process_name_t to no longer be an OBJ, but instead just a regular C structure. Include the packing-based oob interface.

This commit was SVN r2114.
2004-08-13 15:09:24 +00:00

34 строки
535 B
C

/* -*- C -*-
*
* $HEADER$
*
*/
#ifndef NS_PROXY_H
#define NS_PROXY_H
#include "ompi_config.h"
#include "include/types.h"
#include "include/constants.h"
#include "class/ompi_list.h"
#include "mca/ns/ns.h"
/*
* Module open / close
*/
int mca_ns_proxy_open(void);
int mca_ns_proxy_close(void);
/*
* Startup / Shutdown
*/
mca_ns_base_module_t* mca_ns_proxy_init(bool *allow_multi_user_threads, bool *have_hidden_threads, int *priority);
int mca_ns_proxy_finalize(void);
/*
* globals used within proxy component
*/
#endif