next up previous
Next: tcgetattr, tcsetattr function Up: POSIX Terminal I/O Previous: POSIX Terminal I/O

termios structure

termios は,POSIX で指定されている標準インターフェイスです. System V インターフェイス termio とも類似点があります. termios 構造体は,bits/termios.h の中で以下のように定義されています.

struct termios
  {
    tcflag_t c_iflag;           /* input mode flags */
    tcflag_t c_oflag;           /* output mode flags */
    tcflag_t c_cflag;           /* control mode flags */
    tcflag_t c_lflag;           /* local mode flags */
    cc_t c_line;                /* line discipline */
    cc_t c_cc[NCCS];            /* control characters */
    speed_t c_ispeed;           /* input speed */
    speed_t c_ospeed;           /* output speed */
  };

POSIX Control Mode Flags:

Input Modes:

Output Modes:

Local Modes:

Control Modes:

Local Modes:



Kazuo Nakayoshi
Thu Mar 15 18:48:09 JST 2001