aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-nat.c
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2012-07-07 12:13:57 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2012-07-07 12:13:57 +0000
commitaa7c744796a067e1533b21e7d58aa30e6f3d12c8 (patch)
tree98ecb2c393bda1e81b72b416030ebe1f0904cedb /gdb/linux-nat.c
parent889003ed52d067a971c7e1ed8e0968d91264d273 (diff)
downloadgdb-aa7c744796a067e1533b21e7d58aa30e6f3d12c8.zip
gdb-aa7c744796a067e1533b21e7d58aa30e6f3d12c8.tar.gz
gdb-aa7c744796a067e1533b21e7d58aa30e6f3d12c8.tar.bz2
gdb/
* common/linux-ptrace.c: Include gdb_assert.h. <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration. <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and stdint.h. (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New functions. * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations. * linux-nat.c (linux_child_post_attach) (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings. gdb/gdbserver/ * gdbserver/linux-low.c (initialize_low): Call linux_ptrace_init_warnings.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r--gdb/linux-nat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c
index 8078a80..7ed666f 100644
--- a/gdb/linux-nat.c
+++ b/gdb/linux-nat.c
@@ -583,6 +583,7 @@ linux_child_post_attach (int pid)
{
linux_enable_event_reporting (pid_to_ptid (pid));
linux_enable_tracesysgood (pid_to_ptid (pid));
+ linux_ptrace_init_warnings ();
}
static void
@@ -590,6 +591,7 @@ linux_child_post_startup_inferior (ptid_t ptid)
{
linux_enable_event_reporting (ptid);
linux_enable_tracesysgood (ptid);
+ linux_ptrace_init_warnings ();
}
/* Return the number of known LWPs in the tgid given by PID. */