Protoization.
authorKevin Buettner <kevinb@redhat.com>
Sat, 9 Sep 2000 01:38:49 +0000 (01:38 +0000)
committerKevin Buettner <kevinb@redhat.com>
Sat, 9 Sep 2000 01:38:49 +0000 (01:38 +0000)
gdb/ChangeLog
gdb/infptrace.c
gdb/infttrace.c

index 6e039cff8a6d15ec206f4266b119431073775974..a8febd6be7091d6054de82135be4b0c2f3161039 100644 (file)
@@ -1,3 +1,7 @@
+2000-09-08  Kevin Buettner  <kevinb@redhat.com>
+
+       * infptrace.c, infttrace.c (child_xfer_memory): Protoize.
+
 2000-09-07  J.T. Conklin  <jtc@redback.com>
 
        * config/i386/nbsd.mt (TDEPFILES): Add i386nbsd-tdep.o.
index b189f5077887f0270c8d2db85316ee27f1517b68..30ceb87c4cc94e529f868ee87e281ca3b02dd2ab 100644 (file)
@@ -502,7 +502,7 @@ store_inferior_registers (int regno)
 
 /* Copy LEN bytes to or from inferior's memory starting at MEMADDR
    to debugger memory starting at MYADDR.   Copy to inferior if
-   WRITE is nonzero.
+   WRITE is nonzero.  TARGET is ignored.
 
    Returns the length copied, which is either the LEN argument or zero.
    This xfer function does not do partial moves, since child_ops
@@ -510,12 +510,8 @@ store_inferior_registers (int regno)
    anyway.  */
 
 int
-child_xfer_memory (memaddr, myaddr, len, write, target)
-     CORE_ADDR memaddr;
-     char *myaddr;
-     int len;
-     int write;
-     struct target_ops *target;        /* ignored */
+child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
+                  struct target_ops *target)
 {
   register int i;
   /* Round starting address down to longword boundary.  */
index 8b2fa62f058d27234e66baf95be3b3148de9b97a..9168ce3113764b84f60b5ad17052f9e8a63b9e87 100644 (file)
@@ -4907,7 +4907,7 @@ _initialize_kernel_u_addr (void)
 
 /* Copy LEN bytes to or from inferior's memory starting at MEMADDR
    to debugger memory starting at MYADDR.   Copy to inferior if
-   WRITE is nonzero.
+   WRITE is nonzero.  TARGET is ignored.
 
    Returns the length copied, which is either the LEN argument or zero.
    This xfer function does not do partial moves, since child_ops
@@ -4915,12 +4915,8 @@ _initialize_kernel_u_addr (void)
    anyway.  */
 
 int
-child_xfer_memory (memaddr, myaddr, len, write, target)
-     CORE_ADDR memaddr;
-     char *myaddr;
-     int len;
-     int write;
-     struct target_ops *target;        /* ignored */
+child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write,
+                  struct target_ops *target)
 {
   register int i;
   /* Round starting address down to longword boundary.  */