diff --git a/exitcode_zos.go b/exitcode/exitcode_zos.go similarity index 83% rename from exitcode_zos.go rename to exitcode/exitcode_zos.go index 11beb0fd..f321140c 100644 --- a/exitcode_zos.go +++ b/exitcode/exitcode_zos.go @@ -5,6 +5,7 @@ var Signals = map[int]string{ 0x02: "SIGINT", 0x03: "SIGABRT", 0x04: "SIGILL", + 0x05: "SIGPOLL", 0x06: "SIGURG", 0x07: "SIGSTOP", 0x08: "SIGFPE", @@ -14,8 +15,10 @@ var Signals = map[int]string{ 0x0c: "SIGSYS", 0x0d: "SIGPIPE", 0x0e: "SIGALRM", + 0x0f: "SIGTERM", 0x10: "SIGUSR1", 0x11: "SIGUSR2", + 0x12: "SIGABND", 0x13: "SIGCONT", 0x14: "SIGCHLD", 0x15: "SIGTTIN", @@ -24,9 +27,12 @@ var Signals = map[int]string{ 0x18: "SIGQUIT", 0x19: "SIGTSTP", 0x1a: "SIGTRAP", + 0x1b: "SIGIOERR", 0x1c: "SIGWINCH", 0x1d: "SIGXCPU", 0x1e: "SIGXFSZ", 0x1f: "SIGVTALRM", 0x20: "SIGPROF", + 0x26: "SIGDCE", + 0x27: "SIGDUMP", }