Skip to content

Commit

Permalink
Update and rename exitcode_zos.go to exitcode/exitcode_zos.go
Browse files Browse the repository at this point in the history
Added a few more signals that I missed the first time around.
  • Loading branch information
v1gnesh authored May 20, 2023
1 parent b327b07 commit 869fb73
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions exitcode_zos.go → exitcode/exitcode_zos.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ var Signals = map[int]string{
0x02: "SIGINT",
0x03: "SIGABRT",
0x04: "SIGILL",
0x05: "SIGPOLL",
0x06: "SIGURG",
0x07: "SIGSTOP",
0x08: "SIGFPE",
Expand All @@ -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",
Expand All @@ -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",
}

0 comments on commit 869fb73

Please sign in to comment.