BSD 4 development
[unix-history] / .ref-5cb41021d721f4e0ac572d592613f963e495d1ff / usr / src / old / sdb / message.c
CommitLineData
e7b71058
BJ
1static char sccsid[] = "@(#)message.c 4.1 %G%";
2#
3/*
4 *
5 * UNIX debugger
6 *
7 */
8
9
10
11#include "mac.h"
12#include "mode.h"
13
14
15MSG BADMOD = "bad modifier";
16MSG NOBKPT = "no breakpoint set";
17MSG NOPCS = "no process";
18MSG BADTXT = "text address not found";
19MSG BADDAT = "data address not found";
20MSG EXBKPT = "too many breakpoints";
21MSG BADWAIT = "wait error: process disappeared!";
22MSG ENDPCS = "process terminated";
23MSG NOFORK = "try again";
24MSG SZBKPT = "bkpt: command too long";
25MSG BADMAG = "bad core magic number";
26
27STRING signals[] = {
28 "",
29 "hangup",
30 "interrupt",
31 "quit",
32 "illegal instruction",
33 "trace/BPT",
34 "IOT",
35 "EMT",
36 "floating exception",
37 "killed",
38 "bus error",
39 "memory fault",
40 "bad system call",
41 "broken pipe",
42 "alarm call",
43 "terminated",
44 "signal 16",
45 "stop (signal)",
46 "stop (tty)",
47 "continue (signal)",
48 "child termination",
49 "stop (tty input)",
50 "stop (tty output)",
51 "input available (signal)",
52 "cpu timelimit",
53 "file sizelimit",
54 "signal 26",
55 "signal 27",
56 "signal 28",
57 "signal 29",
58 "signal 30",
59 "signal 31",
60};
61int nsig = sizeof (signals)/sizeof (signals[0]);