Device and Class Specific Functions [POSIX Section 7]

Functions Implemented

speed_t cfgetospeed( const struct termios *termios_p ); 
int cfsetospeed( struct termios *termios_p, speed_t speed ); 
speed_t cfgetispeed( const struct termios *termios_p ); 
int cfsetispeed( struct termios *termios_p, speed_t speed ); 
int tcgetattr( int fd, struct termios *termios_p ); 
int tcsetattr( int fd, int optional_actions,
	       const struct termios *termios_p ); 
int tcsendbreak( int fd, int duration ); 
int tcdrain( int fd );
int tcflush( int fd, int queue_selector ); 
int tcsendbreak( int fd, int action );

Functions Omitted

pid_t tcgetpgrp( int fd ); 
int tcsetpgrp( int fd, pid_t pgrp );

Notes