diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2006-11-28 19:45:07 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2006-11-28 19:45:07 +0000 |
commit | 0b75775590156c3315ee61078f8da440bcc78153 (patch) | |
tree | 2c13862fdb8fe0f4904e5cef029d23d261ef1119 /gdb/config | |
parent | 51b57b6b26e4c4780d5f6f7ffacca721e75ff039 (diff) | |
download | gdb-0b75775590156c3315ee61078f8da440bcc78153.zip gdb-0b75775590156c3315ee61078f8da440bcc78153.tar.gz gdb-0b75775590156c3315ee61078f8da440bcc78153.tar.bz2 |
* config/nm-linux.h: Do not include <signal.h>.
(REALTIME_LO, REALTIME_HI): Do not define.
* signals/signals.c (REALTIME_HI): Fix off-by-one bug.
Diffstat (limited to 'gdb/config')
-rw-r--r-- | gdb/config/nm-linux.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/gdb/config/nm-linux.h b/gdb/config/nm-linux.h index b866ea4..b79875e 100644 --- a/gdb/config/nm-linux.h +++ b/gdb/config/nm-linux.h @@ -25,16 +25,6 @@ struct target_ops; /* GNU/Linux is SVR4-ish but its /proc file system isn't. */ #undef USE_PROC_FS -/* Since we're building a native debugger, we can include <signal.h> - to find the range of real-time signals. */ - -#include <signal.h> - -#ifdef __SIGRTMIN -#define REALTIME_LO __SIGRTMIN -#define REALTIME_HI (__SIGRTMAX + 1) -#endif - extern void lin_lwp_attach_lwp (ptid_t ptid, int verbose); #define ATTACH_LWP(ptid, verbose) lin_lwp_attach_lwp ((ptid), (verbose)) |