summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2006-03-31 15:39:10 +0000
committerNathan Sidwell <nathan@codesourcery.com>2006-03-31 15:39:10 +0000
commit065063bd81cd4643f5ed7907c91084551efe34f4 (patch)
tree34e145f582cc8fc1a72de40bd2bc70b32dd58ebb
parentd18daaab1e4cd5740a226ca9aed06cb7b5cdfa97 (diff)
downloadbinutils-gdb-065063bd81cd4643f5ed7907c91084551efe34f4.tar.gz
* gdb/gdbserver/linux-low.c (linux_read_offsets): Remove debugging
printf.
-rw-r--r--gdb/gdbserver/linux-low.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c
index c570e73bd02..08f1d89466d 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);