199df1eadf
This commit was SVN r23959.
27 строки
558 B
C
27 строки
558 B
C
/*
|
|
* Copyright (c) 2010 High Performance Computing Center Stuttgart,
|
|
* University of Stuttgart. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef OMPI_SOCKET_H
|
|
#define OMPI_SOCKET_H
|
|
|
|
#include "opal_config.h"
|
|
|
|
#ifndef OMPI_WIN_COMPAT_H
|
|
#error This file is supposed to be included only from win_compat.h
|
|
#endif /* OMPI_WIN_COMPAT_H */
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
OPAL_DECLSPEC int create_socketpair(int d, int type, int protocol, int sv[2]);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* OMPI_SOCKET_H */ |