2014-03-19 01:25:57 +04:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2012-08-16 23:11:35 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
|
|
|
|
* Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
|
2014-03-19 01:25:57 +04:00
|
|
|
* Copyright (c) 2014 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2012-08-16 23:11:35 +04:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
2012-08-22 18:53:46 +04:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2012-08-16 23:11:35 +04:00
|
|
|
#include <unistd.h>
|
2012-08-22 18:53:46 +04:00
|
|
|
#endif
|
2012-08-16 23:11:35 +04:00
|
|
|
#include <sys/types.h>
|
2012-08-22 18:53:46 +04:00
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
2012-08-16 23:11:35 +04:00
|
|
|
#include <sys/mman.h>
|
2012-08-22 18:53:46 +04:00
|
|
|
#endif
|
2012-08-16 23:11:35 +04:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include "ompi/constants.h"
|
|
|
|
#include "ompi/communicator/communicator.h"
|
|
|
|
#include "ompi/mca/sbgp/basesmsocket/sbgp_basesmsocket.h"
|
|
|
|
|
|
|
|
OBJ_CLASS_INSTANCE(mca_sbgp_basesmsocket_module_t,
|
2014-03-19 01:25:57 +04:00
|
|
|
mca_sbgp_base_module_t, NULL, NULL);
|