Print this page
cfsetspeed

*** 1,9 **** CFSETISPEED(3C) Standard C Library Functions CFSETISPEED(3C) NAME ! cfsetispeed, cfsetospeed - set input and output baud rate SYNOPSIS #include <termios.h> int --- 1,9 ---- CFSETISPEED(3C) Standard C Library Functions CFSETISPEED(3C) NAME ! cfsetispeed, cfsetospeed, cfsetspeed - set input and output baud rate SYNOPSIS #include <termios.h> int
*** 10,26 **** --- 10,32 ---- cfsetispeed(struct termios *termios_p, speed_t speed); int cfsetospeed(struct termios *termios_p, speed_t speed); + int + cfsetspeed(struct termios *termios_p, speed_t speed); + DESCRIPTION The cfsetispeed() function sets the input baud rate stored in the structure pointed to by termios_p to speed. The cfsetospeed() function sets the output baud rate stored in the structure pointed to by termios_p to speed. + The cfsetspeed() function sets both the input and output baud rate stored + in the structure pointed to by termios_p to speed. + There is no effect on the baud rates set in the hardware until a subsequent successful call to tcsetattr(3C) on the same termios structure. RETURN VALUES