From 57541e29d9d7fba916a77292d80e8f35a132bcb4 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 24 Dec 2018 18:12:42 +0100 Subject: sys/linux: add basic X25 descriptions --- sys/linux/tty.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'sys/linux/tty.txt') diff --git a/sys/linux/tty.txt b/sys/linux/tty.txt index a688d9797..d0ffe3d3d 100644 --- a/sys/linux/tty.txt +++ b/sys/linux/tty.txt @@ -5,6 +5,7 @@ include include include include +include resource fd_tty[fd] @@ -41,7 +42,7 @@ ioctl$TIOCGSID(fd fd_tty, cmd const[TIOCGSID], arg ptr[out, pid]) ioctl$TIOCEXCL(fd fd_tty, cmd const[TIOCEXCL]) ioctl$TIOCNXCL(fd fd_tty, cmd const[TIOCNXCL]) ioctl$TIOCGETD(fd fd_tty, cmd const[TIOCGETD], arg ptr[out, int32]) -ioctl$TIOCSETD(fd fd_tty, cmd const[TIOCSETD], arg ptr[in, int32]) +ioctl$TIOCSETD(fd fd_tty, cmd const[TIOCSETD], arg ptr[in, int32[N_TTY:N_NULL]]) ioctl$TIOCPKT(fd fd_tty, cmd const[TIOCPKT], arg ptr[in, int32]) ioctl$TIOCMGET(fd fd_tty, cmd const[TIOCMGET], arg ptr[out, int32]) ioctl$TIOCMSET(fd fd_tty, cmd const[TIOCMSET], arg ptr[in, int32]) @@ -112,7 +113,7 @@ termios { oflag int32 cflag int32 lflag int32 - line int8 + line int8[N_TTY:N_NULL] cc0 int8 cc1 int8 cc2 int8 @@ -127,7 +128,7 @@ termio { oflag int16 cflag int16 lflag int16 - line int8 + line int8[N_TTY:N_NULL] cc0 int8 cc1 int8 cc2 int8 -- cgit mrf-deployment