TIOCSETD(2const) TIOCSETD(2const)

TIOCGETD, TIOCSETD - get or set the line discipline of the terminal

Standard C library (libc, -lc)

#include <asm/termbits.h>  /* Definition of TIOC*ETD constants */
#include <sys/ioctl.h>
int ioctl(int fd, TIOCGETD, int *argp);
int ioctl(int fd, TIOCSETD, const int *argp);

Get the line discipline of the terminal.
Set the line discipline of the terminal.

On success, 0 is returned. On error, -1 is returned, and errno is set to indicate the error.

ioctl(2), ioctl_tty(2)

2024-06-13 Linux man-pages 6.9.1