2013-09-26 21:56:20 +00:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2008-06-18 03:15:56 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2013-09-26 21:56:20 +00:00
|
|
|
* Copyright (c) 2013 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2008-06-18 03:15:56 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "ompi/mca/pubsub/pubsub.h"
|
|
|
|
#include "ompi/mca/pubsub/base/base.h"
|
|
|
|
|
2013-09-26 21:56:20 +00:00
|
|
|
int ompi_pubsub_base_null_publish(const char *service, ompi_info_t *info, const char *port)
|
2008-06-18 03:15:56 +00:00
|
|
|
{
|
|
|
|
return OMPI_ERR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:56:20 +00:00
|
|
|
int ompi_pubsub_base_null_unpublish(const char *service, ompi_info_t *info)
|
2008-06-18 03:15:56 +00:00
|
|
|
{
|
|
|
|
return OMPI_ERR_NOT_SUPPORTED;
|
|
|
|
}
|
|
|
|
|
2013-09-26 21:56:20 +00:00
|
|
|
char* ompi_pubsub_base_null_lookup(const char *service, ompi_info_t *info)
|
2008-06-18 03:15:56 +00:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|