From 0d4a7cf9c5c39b78b203d4c1c9021f59ae8189a4 Mon Sep 17 00:00:00 2001 From: v1gnesh Date: Sat, 3 Jun 2023 14:04:54 +0530 Subject: [PATCH] Add support for zOS zOS is an IBM Z (mainframe) operating system. --- internal/filewatcher/term_zos.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 internal/filewatcher/term_zos.go diff --git a/internal/filewatcher/term_zos.go b/internal/filewatcher/term_zos.go new file mode 100644 index 00000000..736d67b0 --- /dev/null +++ b/internal/filewatcher/term_zos.go @@ -0,0 +1,6 @@ +package filewatcher + +import "golang.org/x/sys/unix" + +const tcGet = unix.TCGETS +const tcSet = unix.TCSETS