gdbserver: add comments to read_inferior_memory function
authorAndrew Burgess <aburgess@redhat.com>
Thu, 20 Oct 2022 09:52:48 +0000 (10:52 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Fri, 13 Jan 2023 16:41:05 +0000 (16:41 +0000)
Just adding some comments to the gdbserver read_inferior_memory
function.  No actual code changes.

gdbserver/target.cc
gdbserver/target.h
gdbserver/tracepoint.cc

index 24b8e2160138bde7153b4bd7150ea07c91b00987..720a61d636a550af91883a4b9add63e48099d0ca 100644 (file)
@@ -79,6 +79,8 @@ set_desired_process ()
   return proc != nullptr;
 }
 
+/* See target.h.  */
+
 int
 read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
 {
index eea651c30b4be536946c2f517d64d4be00896df4..6d92f0f5cd8456fc5052b0d2a1d66a38702d6c14 100644 (file)
@@ -700,6 +700,9 @@ target_thread_pending_child (thread_info *thread)
   return the_target->thread_pending_child (thread);
 }
 
+/* Read LEN bytes from MEMADDR in the buffer MYADDR.  Return 0 if the read
+   is successful, otherwise, return a non-zero error code.  */
+
 int read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len);
 
 /* Set GDBserver's current thread to the thread the client requested
index fa4cd8abb5e3a968f40870fd573ae28bc0e72520..37a9a8c5b7c49df0dd2ef58c30d1a0a6dbdf0cdd 100644 (file)
@@ -344,6 +344,8 @@ tracepoint_look_up_symbols (void)
    GDBserver side.  */
 
 #ifdef IN_PROCESS_AGENT
+/* See target.h.  */
+
 int
 read_inferior_memory (CORE_ADDR memaddr, unsigned char *myaddr, int len)
 {