This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH] Enable rthreads support on OpenBSD/i386.
- From: Mark Kettenis <mark dot kettenis at xs4all dot nl>
- To: gdb-patches at sourceware dot org
- Date: Sat, 1 Mar 2014 15:32:05 +0100 (CET)
- Subject: [PATCH] Enable rthreads support on OpenBSD/i386.
- Authentication-results: sourceware.org; auth=none
Committed.
gdb/ChangeLog:
* i386obsd-nat.c: Include "obsd-nat.h".
(_initialize_i386obsd_nat): Call obsd_add_target instead of
add_target.
* config/i386/obsd.mh (NATDEPFILES): Add obsd-nat.o.
---
gdb/ChangeLog | 7 +++++++
gdb/config/i386/obsd.mh | 2 +-
gdb/i386obsd-nat.c | 5 +++--
3 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 4666637..db7cd03 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,12 @@
2014-03-01 Mark Kettenis <kettenis@gnu.org>
+ * i386obsd-nat.c: Include "obsd-nat.h".
+ (_initialize_i386obsd_nat): Call obsd_add_target instead of
+ add_target.
+ * config/i386/obsd.mh (NATDEPFILES): Add obsd-nat.o.
+
+2014-03-01 Mark Kettenis <kettenis@gnu.org>
+
* i386obsd-nat.c (i386obsd_supply_pcb): Cast 'sf' to 'gdb_byte *'.
2014-03-01 Mark Kettenis <kettenis@gnu.org>
diff --git a/gdb/config/i386/obsd.mh b/gdb/config/i386/obsd.mh
index 5d691b3..a9041f4 100644
--- a/gdb/config/i386/obsd.mh
+++ b/gdb/config/i386/obsd.mh
@@ -1,5 +1,5 @@
# Host: OpenBSD/i386 ELF
-NATDEPFILES= fork-child.o inf-ptrace.o \
+NATDEPFILES= fork-child.o inf-ptrace.o obsd-nat.o \
i386bsd-nat.o i386obsd-nat.o bsd-kvm.o
LOADLIBES= -lkvm
diff --git a/gdb/i386obsd-nat.c b/gdb/i386obsd-nat.c
index a0b0808..db97cb6 100644
--- a/gdb/i386obsd-nat.c
+++ b/gdb/i386obsd-nat.c
@@ -28,6 +28,7 @@
#include "i386-tdep.h"
#include "i386bsd-nat.h"
+#include "obsd-nat.h"
#include "bsd-kvm.h"
static int
@@ -94,8 +95,8 @@ void _initialize_i386obsd_nat (void);
void
_initialize_i386obsd_nat (void)
{
- /* We've got nothing to add to the common *BSD/i386 target. */
- add_target (i386bsd_target ());
+ /* Add some extra features to the common *BSD/i386 target. */
+ obsd_add_target (i386bsd_target ());
/* Support debugging kernel virtual memory images. */
bsd_kvm_add_target (i386obsd_supply_pcb);
--
1.8.5.3