1
1
openmpi/ompi/mca/rte/pmi/rte_pmi_comm.c
Brian Barrett f42783ae1a Move the RTE framework change into the trunk. With this change, all non-CR
runtime code goes through one of the rte, dpm, or pubsub frameworks.

This commit was SVN r27934.
2013-01-27 23:25:10 +00:00

85 строки
1.9 KiB
C

/*
* Copyright (c) 2013 Sandia National Laboratories. All rights reserved.
*
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*
*/
#include "ompi_config.h"
#include "opal/threads/tsd.h"
#include "ompi/constants.h"
#include "ompi/mca/rte/rte.h"
#include "rte_pmi.h"
#include "rte_pmi_internal.h"
int
ompi_rte_send_buffer(const ompi_process_name_t *peer,
struct opal_buffer_t *buffer,
ompi_rml_tag_t tag,
int flags)
{
return OMPI_ERR_NOT_SUPPORTED;
}
int
ompi_rte_send_buffer_nb(const ompi_process_name_t *peer,
struct opal_buffer_t *buffer,
ompi_rml_tag_t tag,
int flags,
void (*cbfunc)(int, ompi_process_name_t*,
opal_buffer_t*, ompi_rml_tag_t,
void*),
void *cbdata)
{
return OMPI_ERR_NOT_SUPPORTED;
}
int
ompi_rte_recv_buffer(const ompi_process_name_t *peer,
struct opal_buffer_t *buf,
ompi_rml_tag_t tag,
int flags)
{
return OMPI_ERR_NOT_SUPPORTED;
}
int
ompi_rte_recv_buffer_nb(const ompi_process_name_t *peer,
ompi_rml_tag_t tag,
int flags,
void (*cbfunc)(int, ompi_process_name_t*,
opal_buffer_t*, ompi_rml_tag_t,
void*),
void *cbdata)
{
return OMPI_ERR_NOT_SUPPORTED;
}
int
ompi_rte_recv_cancel(const ompi_process_name_t *peer,
ompi_rml_tag_t tag)
{
return OMPI_ERR_NOT_SUPPORTED;
}
int
ompi_rte_parse_uris(const char* contact_info,
ompi_process_name_t *peer,
char ***uris)
{
return OMPI_ERR_NOT_SUPPORTED;
}