From 1dd1751e96170e8faa8f3ac8cdb8325c4b961707 Mon Sep 17 00:00:00 2001 From: Andrew Cagney Date: Mon, 14 May 2001 16:48:01 +0000 Subject: [PATCH] * remote.c (remote_write_bytes): Set nr_bytes before returning it. * solib.h (no_shared_libraries): Declare. --- gdb/ChangeLog | 5 +++++ gdb/remote.c | 1 + gdb/solib.h | 2 ++ 3 files changed, 8 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7ba341631f8..f1f8a44e583 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2001-05-14 Andrew Cagney + + * remote.c (remote_write_bytes): Set nr_bytes before returning it. + * solib.h (no_shared_libraries): Declare. + 2001-05-12 Andrew Cagney * gdbarch.sh (struct gdbarch_info): Delete field bfd_architecture. diff --git a/gdb/remote.c b/gdb/remote.c index 7cbe878c1dd..60d462c166a 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -3630,6 +3630,7 @@ remote_write_bytes (CORE_ADDR memaddr, char *myaddr, int len) increasing byte addresses. Each byte is encoded as a two hex value. */ bin2hex (myaddr, p, todo); + nr_bytes = todo; break; case PACKET_SUPPORT_UNKNOWN: internal_error (__FILE__, __LINE__, diff --git a/gdb/solib.h b/gdb/solib.h index e99aba98c96..05e0cb73b65 100644 --- a/gdb/solib.h +++ b/gdb/solib.h @@ -193,3 +193,5 @@ extern char *solib_address (CORE_ADDR); /* solib.c */ #define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) in_solib_dynsym_resolve_code (pc) extern int in_solib_dynsym_resolve_code (CORE_ADDR); /* solib.c */ + +extern int no_shared_libraries (char *ignored, int from_tty); -- 2.30.2