* fhandler.h (fhandler_serial::is_tty): Reinstantiate.

This commit is contained in:
Corinna Vinschen 2014-08-19 08:31:10 +00:00
parent bd094739f3
commit be2b7c5684
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2014-08-19 Corinna Vinschen <corinna@vinschen.de>
* fhandler.h (fhandler_serial::is_tty): Reinstantiate.
2014-08-18 Corinna Vinschen <corinna@vinschen.de>
* miscfuncs.cc (strlwr): Rename from cygwin_strlwr. Drop __stdcall
@ -14,6 +18,7 @@
(class fhandler_socket): Drop listener status flag.
(fhandler_socket::lseek): Return -1 and errno ESPIPE.
(fhandler_serial::lseek): Ditto.
(fhandler_serial::is_tty): Remove.
* fhandler_socket.cc (fhandler_socket::listen): Set connect_state to
listener. Add comment.
(fhandler_socket::accept4): Explicitely check if the socket is listening

View File

@ -1144,6 +1144,7 @@ class fhandler_serial: public fhandler_base
return -1;
}
int tcflush (int);
bool is_tty () const { return true; }
void fixup_after_fork (HANDLE parent);
void fixup_after_exec ();