diff options
author | Mark Kettenis <kettenis@gnu.org> | 2014-02-27 23:23:46 +0100 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2014-02-28 22:45:51 +0100 |
commit | 863e4da4b6713fbd0b3a19fe3a7f7be1ea34f704 (patch) | |
tree | e6a6b2ae7376a204d42a9ca63b519414a9fdc014 /gdb/Makefile.in | |
parent | 89de4da46b3b3629c51e6e1a37177a6269dc8b05 (diff) | |
download | gdb-863e4da4b6713fbd0b3a19fe3a7f7be1ea34f704.zip gdb-863e4da4b6713fbd0b3a19fe3a7f7be1ea34f704.tar.gz gdb-863e4da4b6713fbd0b3a19fe3a7f7be1ea34f704.tar.bz2 |
Support rthreads on OpenBSD 5.2 and later.
OpenBSD 5.2 and later have a proper threads implementation based on
kernel threads. Debugging support is provided through additional
ptrace(2) requests, so this diff extends the generic code in
inf-ptrace.c with OpenBSD-specific code to discover additional threads.
gdb/ChangeLog:
* obsd-nat.h: New file.
* obsd-nat.c: New file.
* Makefile.in (HFILES_NO_SRCDIR): Add obsd-nat.h.
(ALLDEPFILES): Add obsd-nat.c.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index fe06988..c8e2c9d 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -864,7 +864,7 @@ gnulib/import/string.in.h gnulib/import/str-two-way.h \ gnulib/import/stdint.in.h remote.h remote-notif.h gdb.h sparc-nat.h \ gdbthread.h dwarf2-frame.h dwarf2-frame-tailcall.h nbsd-nat.h dcache.h \ amd64-nat.h s390-linux-tdep.h arm-linux-tdep.h exceptions.h macroscope.h \ -gdbarch.h bsd-uthread.h memory-map.h memrange.h \ +gdbarch.h bsd-uthread.h memory-map.h memrange.h obsd-nat.h \ mdebugread.h m88k-tdep.h stabsread.h hppa-linux-offsets.h linux-fork.h \ ser-unix.h inf-ptrace.h terminal.h ui-out.h frame-base.h \ f-lang.h dwarf2loc.h value.h sparc-tdep.h defs.h target-descriptions.h \ @@ -1639,7 +1639,7 @@ ALLDEPFILES = \ mips64obsd-nat.c mips64obsd-tdep.c \ msp430-tdep.c \ nios2-tdep.c nios2-linux-tdep.c \ - nbsd-nat.c nbsd-tdep.c obsd-tdep.c \ + nbsd-nat.c nbsd-tdep.c obsd-nat.c obsd-tdep.c \ solib-osf.c \ somread.c solib-som.c \ posix-hdep.c \ |