2002-03-15 Robert Collins <rbtcollins@hotmail.com>
* fhandler.h (fhandler_termios::lseek): Override lseek. * fhandler_termios.cc (fhandler_termios::lseek): Implement this.
This commit is contained in:
@@ -345,3 +345,10 @@ fhandler_termios::fixup_after_fork (HANDLE parent)
|
||||
this->fhandler_base::fixup_after_fork (parent);
|
||||
fork_fixup (parent, get_output_handle (), "output_handle");
|
||||
}
|
||||
|
||||
__off64_t
|
||||
fhandler_termios::lseek (__off64_t, int)
|
||||
{
|
||||
set_errno (ESPIPE);
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user