diff options
author | Nathan Sidwell <nathan@codesourcery.com> | 2006-03-31 15:39:10 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@codesourcery.com> | 2006-03-31 15:39:10 +0000 |
commit | 065063bd81cd4643f5ed7907c91084551efe34f4 (patch) | |
tree | 34e145f582cc8fc1a72de40bd2bc70b32dd58ebb | |
parent | d18daaab1e4cd5740a226ca9aed06cb7b5cdfa97 (diff) | |
download | fsf-binutils-gdb-065063bd81cd4643f5ed7907c91084551efe34f4.zip fsf-binutils-gdb-065063bd81cd4643f5ed7907c91084551efe34f4.tar.gz fsf-binutils-gdb-065063bd81cd4643f5ed7907c91084551efe34f4.tar.bz2 |
* gdb/gdbserver/linux-low.c (linux_read_offsets): Remove debugging
printf.
-rw-r--r-- | gdb/gdbserver/linux-low.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c index c570e73..08f1d89 100644 --- a/gdb/gdbserver/linux-low.c +++ b/gdb/gdbserver/linux-low.c @@ -1589,8 +1589,6 @@ linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p) data base-address from it (which is just the length of the text segment). BSS immediately follows data in both cases. */ - printf ("%lx, %lx, %lx\n", text, text_end, data); - *text_p = text; *data_p = data - (text_end - text); |