2 Copyright (C) 1995-2016, The AROS Development Team. All rights reserved.
10 /*****************************************************************************
14 #include <sys/ioctl.h>
23 const struct termios
*t
)
26 Set terminal attributes.
30 opt - optional actions
31 t - struct termios containing the requested changes
38 Will return success, if *any* of the changes were successful.
39 Currently supports only ICANON flag
50 ******************************************************************************/
52 fdesc
*fdesc
= __getfdesc(fd
);
60 if (IsInteractive(fdesc
->fcb
->handle
))
62 if (t
->c_lflag
& ICANON
)
64 SetMode(fdesc
->fcb
->handle
, 0);
65 fdesc
->fcb
->privflags
&= ~_FCB_CONSOLERAW
;
69 SetMode(fdesc
->fcb
->handle
, 1);
70 fdesc
->fcb
->privflags
|= _FCB_CONSOLERAW
;