From 4a722a65f3a9dcfb173201b43541240805275c27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Thu, 29 Oct 2020 14:00:05 +0100 Subject: [PATCH] strace: Added a few more types to termios ioctls. Change-Id: I863a0a9bc6ad7527a56465246acac073f8878809 Reviewed-on: https://review.haiku-os.org/c/haiku/+/3365 Reviewed-by: waddlesplash --- src/bin/debug/strace/ioctl.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/bin/debug/strace/ioctl.cpp b/src/bin/debug/strace/ioctl.cpp index a348e1f585..2559fe3524 100644 --- a/src/bin/debug/strace/ioctl.cpp +++ b/src/bin/debug/strace/ioctl.cpp @@ -128,6 +128,13 @@ static const ioctl_info kIOCtls[] = { IOCTL_INFO_ENTRY(TCVTIME), IOCTL_INFO_ENTRY(TIOCGPGRP), IOCTL_INFO_ENTRY(TIOCSPGRP), + IOCTL_INFO_ENTRY(TIOCSCTTY), + IOCTL_INFO_ENTRY(TIOCMGET), + IOCTL_INFO_ENTRY(TIOCMSET), + IOCTL_INFO_ENTRY(TIOCSBRK), + IOCTL_INFO_ENTRY(TIOCCBRK), + IOCTL_INFO_ENTRY(TIOCMBIS), + IOCTL_INFO_ENTRY(TIOCMBIC), // private termios IOCTL_INFO_ENTRY(B_IOCTL_GET_TTY_INDEX), IOCTL_INFO_ENTRY(B_IOCTL_GRANT_TTY),