diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-09-10 15:51:59 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-09-10 15:51:59 +0000 |
commit | 34a1d63d80fcc64cced0fb40b03f1c2a6fbc8ab8 (patch) | |
tree | ed8ef52985251bc75d6cd9ee91e3d67b6c694099 /winsup/cygwin/include/pty.h | |
parent | 136265194d593ddee3923cdb3bc0fcfe087a7e5a (diff) | |
download | cygnal-34a1d63d80fcc64cced0fb40b03f1c2a6fbc8ab8.tar.gz cygnal-34a1d63d80fcc64cced0fb40b03f1c2a6fbc8ab8.tar.bz2 cygnal-34a1d63d80fcc64cced0fb40b03f1c2a6fbc8ab8.zip |
* Makefile.in (DLL_OFILES): Add bsdlib.o.
* autoload.cc (RegisterServiceProcess): Add.
* bsdlib.cc: New file.
(daemon): New function.
(login_tty): Ditto.
(openpty): Ditto.
(forkpty): Ditto.
* cygwin.din: Export daemon, forkpty, login_tty, logwtmp, updwtmp,
openpty and revoke.
* syscalls.cc (updwtmp): New function, writing to wtmp exclusively.
(logwtmp): Ditto.
(login): Call updwtmp instead of writing to wtmp by itself.
(logout): Ditto.
* tty.cc (revoke): New funtion.
* include/paths.h: Define _PATH_DEVNULL.
* include/pty.h: New header.
* include/cygwin/version.h: Bump API minor number.
* include/sys/utmp.h: Declare logwtmp with const arguments.
Declare updwtmp.
* lib/iruserok.c: New file.
(ruserok): New function.
(iruserok): Ditto.
(__ivaliduser): Ditto.
(__icheckhost): Ditto.
Diffstat (limited to 'winsup/cygwin/include/pty.h')
-rw-r--r-- | winsup/cygwin/include/pty.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/winsup/cygwin/include/pty.h b/winsup/cygwin/include/pty.h new file mode 100644 index 000000000..e4b4da03f --- /dev/null +++ b/winsup/cygwin/include/pty.h @@ -0,0 +1,18 @@ +#ifndef __PTY_H__ +#define __PTY_H__ + +#include <_ansi.h> +#include <sys/termios.h> + +#ifdef __cplusplus +extern "C" { +#endif + +int _EXFUN(openpty ,(int *, int *, char *, struct termios *, struct winsize *)); +int _EXFUN(forkpty ,(int *, char *, struct termios *, struct winsize *)); + +#ifdef __cplusplus +} +#endif + +#endif /* __PTY_H__ */ |