File: exitcode_dragonfly.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 (36 lines) | stat: -rw-r--r-- 622 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
36
package exitcode

var Signals = map[int]string{
	0x01: "SIGHUP",
	0x02: "SIGINT",
	0x03: "SIGQUIT",
	0x04: "SIGILL",
	0x05: "SIGTRAP",
	0x06: "SIGABRT",
	0x07: "SIGEMT",
	0x08: "SIGFPE",
	0x09: "SIGKILL",
	0x0A: "SIGBUS",
	0x0B: "SIGSEGV",
	0x0C: "SIGSYS",
	0x0D: "SIGPIPE",
	0x0E: "SIGALRM",
	0x0F: "SIGTERM",
	0x10: "SIGURG",
	0x11: "SIGSTOP",
	0x12: "SIGTSTP",
	0x13: "SIGCONT",
	0x14: "SIGCHLD",
	0x15: "SIGTTIN",
	0x16: "SIGTTOU",
	0x17: "SIGIO",
	0x18: "SIGXCPU",
	0x19: "SIGXFSZ",
	0x1A: "SIGVTALRM",
	0x1B: "SIGPROF",
	0x1C: "SIGWINCH",
	0x1D: "SIGINFO",
	0x20: "SIGTHR",
	0x21: "SIGCKPT",
	0x22: "SIGCKPTEXIT",
}