1
1
openmpi/ompi/mca/common/ofautils/common_ofautils.h
Jeff Squyres 5ec6a65a72 After I spent a while looking in libibverbs for
ibv_get_device_list_compat() and not finding it, I finally realized
that it was a function in OMPI.  So let's name it with a proper ompi_
prefix, not an ibv_ prefix.

This commit was SVN r26867.
2012-07-25 16:32:51 +00:00

27 строки
549 B
C

/*
* Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
* All rights reserved.
* Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef _COMMON_OFAUTILS_H_
#define _COMMON_OFAUTILS_H_
#include "ompi_config.h"
OMPI_DECLSPEC extern
struct ibv_device **ompi_ibv_get_device_list(int *num_devs);
OMPI_DECLSPEC extern
void ompi_ibv_free_device_list(struct ibv_device **ib_devs);
END_C_DECLS
#endif