Skip to content

Commit

Permalink
Add exit codes for an IBM Z OS, named 'zos'
Browse files Browse the repository at this point in the history
  • Loading branch information
v1gnesh authored May 9, 2023
1 parent d07d474 commit b327b07
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions exitcode_zos.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package exitcode

var Signals = map[int]string{
0x01: "SIGHUP",
0x02: "SIGINT",
0x03: "SIGABRT",
0x04: "SIGILL",
0x06: "SIGURG",
0x07: "SIGSTOP",
0x08: "SIGFPE",
0x09: "SIGKILL",
0x0a: "SIGBUS",
0x0b: "SIGSEGV",
0x0c: "SIGSYS",
0x0d: "SIGPIPE",
0x0e: "SIGALRM",
0x10: "SIGUSR1",
0x11: "SIGUSR2",
0x13: "SIGCONT",
0x14: "SIGCHLD",
0x15: "SIGTTIN",
0x16: "SIGTTOU",
0x17: "SIGIO",
0x18: "SIGQUIT",
0x19: "SIGTSTP",
0x1a: "SIGTRAP",
0x1c: "SIGWINCH",
0x1d: "SIGXCPU",
0x1e: "SIGXFSZ",
0x1f: "SIGVTALRM",
0x20: "SIGPROF",
}

0 comments on commit b327b07

Please sign in to comment.