PR remote/2158

* remote.c (remote_write_bytes): Throttle packet alignment
	for small packets.
This commit is contained in:
Daniel Jacobowitz 2006-10-16 03:08:37 +00:00
parent c88c804ea4
commit 9b7194bcb4
2 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2006-10-15 Daniel Jacobowitz <dan@codesourcery.com>
PR remote/2158
* remote.c (remote_write_bytes): Throttle packet alignment
for small packets.
2006-10-16 Jeff Johnston <jjohnstn@redhat.com>
* linux-thread-db.c (thread_db_wait): Don't bother continuing if

View File

@ -4013,8 +4013,9 @@ remote_write_bytes_aux (const char *header, CORE_ADDR memaddr,
payload_size);
/* If not all TODO bytes fit, then we'll need another packet. Make
a second try to keep the end of the packet aligned. */
if (nr_bytes < todo)
a second try to keep the end of the packet aligned. Don't do
this if the packet is tiny. */
if (nr_bytes < todo && nr_bytes > 2 * REMOTE_ALIGN_WRITES)
{
int new_nr_bytes;