diff options
Diffstat (limited to 'gdb/signame.c')
-rwxr-xr-x | gdb/signame.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/signame.c b/gdb/signame.c index 1294279..f96b74e 100755 --- a/gdb/signame.c +++ b/gdb/signame.c @@ -198,6 +198,12 @@ static void init_sigs () #if defined (SIGLOST) init_sig (SIGLOST, "LOST", "Resource lost"); #endif +#if defined (SIGWAITING) + init_sig (SIGWAITING, "WAITING", "Process's LWPs are blocked"); /* FIXME */ +#endif +#if defined (SIGLWP) + init_sig (SIGLWP, "LWP", "Signal LWP"); /* FIXME description */ +#endif } /* Return the abbreviation for signal NUMBER. */ |