2010-10-26 14:53:50 +00:00
|
|
|
/*
|
2015-06-23 20:59:57 -07:00
|
|
|
* Copyright (c) 2010 High Performance Computing Center Stuttgart,
|
2010-10-26 14:53:50 +00:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2010-10-26 14:53:50 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2010-10-26 14:53:50 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2014-07-26 20:17:09 +00:00
|
|
|
#ifndef OPAL_SOCKET_H
|
|
|
|
#define OPAL_SOCKET_H
|
2010-10-26 14:53:50 +00:00
|
|
|
|
|
|
|
#include "opal_config.h"
|
|
|
|
|
2014-07-26 20:17:09 +00:00
|
|
|
#ifndef OPAL_WIN_COMPAT_H
|
2010-10-26 14:53:50 +00:00
|
|
|
#error This file is supposed to be included only from win_compat.h
|
2014-07-26 20:17:09 +00:00
|
|
|
#endif /* OPAL_WIN_COMPAT_H */
|
2010-10-26 14:53:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
2010-10-27 11:52:57 +00:00
|
|
|
OPAL_DECLSPEC int create_socketpair(int d, int type, int protocol, int sv[2]);
|
2010-10-26 14:53:50 +00:00
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
2014-07-26 20:17:09 +00:00
|
|
|
#endif /* OPAL_SOCKET_H */
|