diff options
Diffstat (limited to 'gdb/i386-linux-nat.c')
-rw-r--r-- | gdb/i386-linux-nat.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/i386-linux-nat.c b/gdb/i386-linux-nat.c index ff837f2..31b9086 100644 --- a/gdb/i386-linux-nat.c +++ b/gdb/i386-linux-nat.c @@ -853,6 +853,14 @@ i386_linux_child_post_startup_inferior (ptid_t ptid) super_post_startup_inferior (ptid); } +/* Get Linux/x86 target description from running target. */ + +static const struct target_desc * +i386_linux_read_description (struct target_ops *ops) +{ + return tdesc_i386_linux; +} + void _initialize_i386_linux_nat (void) { @@ -881,6 +889,8 @@ _initialize_i386_linux_nat (void) t->to_fetch_registers = i386_linux_fetch_inferior_registers; t->to_store_registers = i386_linux_store_inferior_registers; + t->to_read_description = i386_linux_read_description; + /* Register the target. */ linux_nat_add_target (t); linux_nat_set_new_thread (t, i386_linux_new_thread); |