2006-03-11 05:35:40 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2006 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2006-08-23 04:29:35 +04:00
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
2006-03-11 05:35:40 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2015-06-24 06:59:57 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
2006-03-11 05:35:40 +03:00
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-03-11 05:35:40 +03:00
|
|
|
* Additional copyrights may follow
|
2015-06-24 06:59:57 +03:00
|
|
|
*
|
2006-03-11 05:35:40 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPAL_UTIL_PTY_H
|
|
|
|
#define OPAL_UTIL_PTY_H
|
|
|
|
|
2009-03-04 18:35:54 +03:00
|
|
|
#include "opal_config.h"
|
|
|
|
|
2006-03-11 05:35:40 +03:00
|
|
|
#ifdef HAVE_UTIL_H
|
|
|
|
#include <util.h>
|
|
|
|
#endif
|
2007-09-20 01:59:22 +04:00
|
|
|
#ifdef HAVE_LIBUTIL_H
|
|
|
|
#include <libutil.h>
|
|
|
|
#endif
|
2006-03-11 05:35:40 +03:00
|
|
|
#ifdef HAVE_TERMIOS_H
|
|
|
|
# include <termios.h>
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_TERMIO_H
|
|
|
|
# include <termio.h>
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
BEGIN_C_DECLS
|
2006-08-23 04:29:35 +04:00
|
|
|
|
2015-06-24 06:59:57 +03:00
|
|
|
#if OPAL_ENABLE_PTY_SUPPORT
|
2006-03-31 22:51:06 +04:00
|
|
|
|
2015-06-24 06:59:57 +03:00
|
|
|
OPAL_DECLSPEC int opal_openpty(int *amaster, int *aslave, char *name,
|
2006-08-23 04:29:35 +04:00
|
|
|
struct termios *termp, struct winsize *winp);
|
2006-03-11 05:35:40 +03:00
|
|
|
|
2006-03-31 22:51:06 +04:00
|
|
|
#else
|
|
|
|
|
2006-08-23 04:29:35 +04:00
|
|
|
OPAL_DECLSPEC int opal_openpty(int *amaster, int *aslave, char *name,
|
|
|
|
void *termp, void *winpp);
|
|
|
|
|
|
|
|
#endif
|
2006-03-31 22:51:06 +04:00
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
END_C_DECLS
|
2006-03-31 22:51:06 +04:00
|
|
|
|
2006-03-11 05:35:40 +03:00
|
|
|
#endif /* OPAL_UTIL_PTY_H */
|