Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jacobowitz <drow@false.org>2006-07-04 17:42:10 +0400
committerDaniel Jacobowitz <drow@false.org>2006-07-04 17:42:10 +0400
commita519444b35ee561431b0fb34e4a37c52adf55ad5 (patch)
tree9e3d86b995f9fce8f711968ff04657c5f4ed42f7
parentb4e80d9225077cc9da15bf567600ddc66738f184 (diff)
Backport get_remote_packet_size from HEAD.
-rw-r--r--ChangeLog.csl31
1 files changed, 31 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl
index d0e1bb62c..e0f9c74c7 100644
--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,3 +1,34 @@
+2006-07-04 Daniel Jacobowitz <dan@codesourcery.com>
+
+ gdb/
+ * remote.c (struct remote_state): Add explicit_packet_size.
+ (remote_arch_state): Remove explicit_packet_size.
+ (get_remote_packet_size): Check explicit_packet_size.
+ (get_memory_packet_size): Likewise.
+ (remote_query_packet_info): Update.
+ (remote_open_1): Reset explicit_packet_size.
+
+ Backport:
+ 2006-07-04 Daniel Jacobowitz <dan@codesourcery.com>
+ * remote.c (init_remote_state): Use xrealloc instead of xmalloc.
+
+ 2006-06-08 Daniel Jacobowitz <dan@codesourcery.com>
+ * (struct remote_state): New type, only containing
+ buf and buf_size.
+ (remote_state): New variable.
+ (get_remote_state): New function.
+ (struct remote_arch_state): Renamed from struct remote_state.
+ Removed buf and buf_size.
+ (get_remote_arch_state): Renamed from get_remote_state. All
+ necessary callers updated to call this function.
+ (init_remote_state): Initialize the architecture-specific state.
+ Update the target-specific state if necessary.
+ (get_remote_packet_size): New function. All previous references
+ changed to use this accessor function.
+ (packet_reg_from_regnum, packet_reg_from_pnum): Take a
+ remote_arch_state instead of a remote_state. All callers changed.
+ (_initialize_remote): Initialize the packet buffer here.
+
2006-07-03 Daniel Jacobowitz <dan@codesourcery.com>
gdb/