diff options
author | Christopher Faylor <me@cgf.cx> | 2005-08-18 20:17:10 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-08-18 20:17:10 +0000 |
commit | 4f3e6ff17b8a7646ed8342164c0a1c6af8f731e8 (patch) | |
tree | 2b46d49328f9fdbd87c8c6287e905586b2124828 /winsup/cygwin/fhandler_tty.cc | |
parent | 91888cc07b6f2d4437a082f740edd3b948e10d0f (diff) | |
download | cygnal-4f3e6ff17b8a7646ed8342164c0a1c6af8f731e8.tar.gz cygnal-4f3e6ff17b8a7646ed8342164c0a1c6af8f731e8.tar.bz2 cygnal-4f3e6ff17b8a7646ed8342164c0a1c6af8f731e8.zip |
* fhandler.h (fhandler_tty_common::lseek): Declare new method.
(fhandler_tty_slave::lseek): Delete old method.
(fhandler_tty_master::lseek): Delete old method.
* fhandler_tty.cc (fhandler_tty_common::lseek): Define new method.
Diffstat (limited to 'winsup/cygwin/fhandler_tty.cc')
-rw-r--r-- | winsup/cygwin/fhandler_tty.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/winsup/cygwin/fhandler_tty.cc b/winsup/cygwin/fhandler_tty.cc index a7d0afb8b..ce2bd5db8 100644 --- a/winsup/cygwin/fhandler_tty.cc +++ b/winsup/cygwin/fhandler_tty.cc @@ -1180,6 +1180,13 @@ fhandler_pty_master::open (int flags, mode_t) return 1; } +_off64_t +fhandler_tty_common::lseek (_off64_t, int) +{ + set_errno (ESPIPE); + return -1; +} + int fhandler_tty_common::close () { |