NAME
tcgetattr — get
the parameters associated with the terminal
SYNOPSIS
#include <termios.h> int tcgetattr(int fildes, struct termios *termios_p);
DESCRIPTION
The tcgetattr() function gets the parameters associated with the terminal referred to by fildes and stores them in the termios structure referenced by termios_p . The fildes argument is an open file descriptor associated with a terminal.
The termios_p argument is a pointer to a termios structure.
The tcgetattr() operation is allowed from any process.
If the terminal device supports different input and output baud rates, the baud rates stored in the termios structure returned by tcgetattr() reflect the actual baud rates, even if they are equal. If differing baud rates are not supported, the rate returned as the output baud rate is the actual baud rate. If the terminal device does not support split baud rates, the input baud rate stored in the termios structure will be 0.
RETURN VALUE
Upon successful completion, 0 is returned. Otherwise, -1 is returned and errno is set to indicate the error.
ERRORS
The tcgetattr() function will fail if:
EXAMPLES
None.
APPLICATION USAGE
None.
FUTURE DIRECTIONS
In a future issue of this document, implementations which do not support differing baud rates will be prohibited from returning 0 as the input baud rate.
SEE ALSO
tcsetattr(3) , <termios.h> , the XBD specification, General Terminal Interface .
DERIVATION
Derived from the POSIX.1-1988 standard.