File: exitcode_linux.go

package info (click to toggle)
powerline-go 1.25-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: sh: 30; makefile: 4
file content (35 lines) | stat: -rw-r--r-- 603 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package exitcode

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