2001-06-24 Fernando Nasser <fnasser@redhat.com>
authorFernando Nasser <fnasser@redhat.com>
Sun, 24 Jun 2001 13:46:09 +0000 (13:46 +0000)
committerFernando Nasser <fnasser@redhat.com>
Sun, 24 Jun 2001 13:46:09 +0000 (13:46 +0000)
* remote-rdi.c (arm_rdi_wait): Fix return type in prototype.
* rdi-share/host.h: Add missing parenthesis in conditional.

2001-06-22  J.T. Conklin  <jtc@redback.com>

* configure.in: include nlist.h when checking for member som_addr
in struct so_map.
* configure: regenerate.

gdb/ChangeLog
gdb/rdi-share/host.h
gdb/remote-rdi.c

index d6c4f5f0b53dec585f3e810027eb3b634cb40bd7..1c245287f0bc585f8c5ca90b67774e7d01a72cd9 100644 (file)
@@ -1,3 +1,8 @@
+2001-06-24  Fernando Nasser  <fnasser@redhat.com>
+
+       * remote-rdi.c (arm_rdi_wait): Fix return type in prototype.
+       * rdi-share/host.h: Add missing parenthesis in conditional.
+
 2001-06-22  J.T. Conklin  <jtc@redback.com>
 
        * configure.in: include nlist.h when checking for member som_addr
index 2955583d08385e0933f36512dd582ec06e661ee7..3c1565b8f11aabfb787248515b7a8354330f7868 100644 (file)
@@ -180,7 +180,7 @@ typedef char *ArgvType;
 #  define FILENAME_MAX 256
 #endif
 
-#if (!defined(__STDC__) && !defined(__cplusplus) || defined(COMPILING_ON_SUNOS)
+#if (!defined(__STDC__) && !defined(__cplusplus)) || defined(COMPILING_ON_SUNOS)
 /* Use bcopy rather than memmove, as memmove is not available.     */
 /* There does not seem to be a header for bcopy.                   */
 void bcopy(const char *src, char *dst, int length);
index 9b7848c741d46721a88f5a3955c9f51a7b9649a9..22274b59cc9419d0008df396816e7877d722f13c 100644 (file)
@@ -77,7 +77,7 @@ static void arm_rdi_mourn (void);
 
 static void arm_rdi_send (char *buf);
 
-static int arm_rdi_wait (ptid_t ptid, struct target_waitstatus *status);
+static ptid_t arm_rdi_wait (ptid_t ptid, struct target_waitstatus *status);
 
 static void arm_rdi_kill (void);