This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

src/gdb ChangeLog remote.c tracepoint.c


CVSROOT:	/cvs/src
Module name:	src
Changes by:	palves@sourceware.org	2013-04-19 15:27:06

Modified files:
	gdb            : ChangeLog remote.c tracepoint.c 

Log message:
	gdb_byte for binary buffer, char for string: remote.c, tracepoint.c.
	
	While the RSP is largely ASCII based (hence the packet buffer type is
	char *), at places we pass around 8-bit binary packets in that buffer.
	Functions like hex2bin or remote_escape_output conceptually are
	handling binary buffers, so I left them as working with gdb_byte, and
	added casts where necessary.  Whether these are host bytes or target
	bytes is blurry at present, so this is largely a matter of taste.
	Switching some of these functions to take "char *" or "void *" would
	be equally good.
	
	gdb/
	2013-04-19  Pedro Alves  <palves@redhat.com>
	
	* remote.c (remote_write_bytes_aux, compare_sections_command)
	(remote_read_qxfer)
	(remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
	(remote_hostio_readlink, remote_bfd_iovec_pread)
	(remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
	binary buffer, and char when buffer is used as string.
	* tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
	(trace_save, tfile_open, traceframe_walk_blocks)
	(tfile_fetch_registers): Likewise.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15445&r2=1.15446
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/remote.c.diff?cvsroot=src&r1=1.542&r2=1.543
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/tracepoint.c.diff?cvsroot=src&r1=1.302&r2=1.303


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]