X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=gdb-common_linux.go;h=ad64f96b15204b324f9b7f085e3854eeca366270;hb=6255220f5dd115619990f698044ffae36c3dfcf6;hp=a2f4bf6f53600820a9875861890c08e921b0aeca;hpb=60974e66c57cacdc2483d74718c4bb0a993d2183;p=src%2Fxds%2Fxds-gdb.git diff --git a/gdb-common_linux.go b/gdb-common_linux.go index a2f4bf6..ad64f96 100644 --- a/gdb-common_linux.go +++ b/gdb-common_linux.go @@ -35,3 +35,7 @@ func tcgetattr(fd uintptr, termios *syscall.Termios) error { } return nil } + +func isIgnoredSignal(sig os.Signal) bool { + return (sig == syscall.SIGWINCH) +}