This is the mail archive of the gdb-patches@sources.redhat.com 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]

[PATCH] Fix target_fetch_registers comment


As per earlier discussions, I adapted the comment on
target_fetch_registers to match reality.

Mark


Index: ChangeLog
from  Mark Kettenis  <kettenis@gnu.org>

	* target.h (target_fetch_registers): Fix comment.

Index: target.h
===================================================================
RCS file: /cvs/src/src/gdb/target.h,v
retrieving revision 1.12
diff -u -r1.12 target.h
--- target.h 2001/02/08 06:03:54 1.12
+++ target.h 2001/02/16 11:24:21
@@ -599,7 +599,7 @@
 #define target_post_wait(pid, status) \
      (*current_target.to_post_wait) (pid, status)
 
-/* Fetch register REGNO, or all regs if regno == -1.  No result.  */
+/* Fetch at least register REGNO, or all regs if regno == -1.  No result.  */
 
 #define	target_fetch_registers(regno)	\
      (*current_target.to_fetch_registers) (regno)


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