diff options
author | rsc <devnull@localhost> | 2005-01-04 22:18:13 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-04 22:18:13 +0000 |
commit | b4223cd6f27153b6c27a88cae3955274416d8749 (patch) | |
tree | c24b1152027625758ef9e8644114513ce21c1c6e /src/lib9 | |
parent | a6662a3672fa66b21b490115f6c2d839c362b7e7 (diff) | |
download | plan9port-b4223cd6f27153b6c27a88cae3955274416d8749.tar.gz plan9port-b4223cd6f27153b6c27a88cae3955274416d8749.tar.bz2 plan9port-b4223cd6f27153b6c27a88cae3955274416d8749.zip |
exception names
Diffstat (limited to 'src/lib9')
-rw-r--r-- | src/lib9/await.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib9/await.c b/src/lib9/await.c index afc5f9e3..f0235a95 100644 --- a/src/lib9/await.c +++ b/src/lib9/await.c @@ -15,8 +15,8 @@ static struct { SIGHUP, "hangup", SIGINT, "interrupt", SIGQUIT, "quit", - SIGILL, "sys: trap: illegal instruction", - SIGTRAP, "sys: trace trap", + SIGILL, "sys: illegal instruction", + SIGTRAP, "sys: breakpoint", SIGABRT, "sys: abort", #ifdef SIGEMT SIGEMT, "sys: emulate instruction executed", |