* remote.c (remote_wait, remote_async_wait): Change
authorGrace Sainsbury <graces@redhat.com>
Thu, 8 Aug 2002 19:45:50 +0000 (19:45 +0000)
committerGrace Sainsbury <graces@redhat.com>
Thu, 8 Aug 2002 19:45:50 +0000 (19:45 +0000)
thread_num from int to ULONGEST.
(unpack_varlen_hex): Change result parameter from
int * to ULONGEST *.

gdb/ChangeLog
gdb/remote.c

index cf4ce9fe8402f319036744b927660beac653d209..e10d7d13c6f6f265ee13100002dd66d36f434171 100644 (file)
@@ -1,3 +1,9 @@
+2002-08-08  Grace Sainsbury  <graces@redhat.com>
+
+       * remote.c (remote_wait, remote_async_wait): Change thread_num
+       ULONGEST.
+       * (unpack_varlen_hex): Change result prameter to ULONGEST *.
+
 2002-08-08  Andrew Cagney  <ac131313@redhat.com>
 
        * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
index dde6fb00ec10a5ade17e6638dd1b0ba3485d766d..6bda0842c8f9c80e1f95962253711768e8449fa7 100644 (file)
@@ -1107,7 +1107,7 @@ struct gdb_ext_thread_info
 
 #define BUF_THREAD_ID_SIZE (OPAQUETHREADBYTES*2)
 
-char *unpack_varlen_hex (char *buff, int *result);
+char *unpack_varlen_hex (char *buff, ULONGEST *result);
 
 static char *unpack_nibble (char *buf, int *val);
 
@@ -1228,7 +1228,7 @@ stub_unpack_int (char *buff, int fieldlength)
 
 char *
 unpack_varlen_hex (char *buff, /* packet to parse */
-                  int *result)
+                  ULONGEST *result)
 {
   int nibble;
   int retval = 0;
@@ -3007,7 +3007,7 @@ remote_wait (ptid_t ptid, struct target_waitstatus *status)
 {
   struct remote_state *rs = get_remote_state ();
   unsigned char *buf = alloca (rs->remote_packet_size);
-  int thread_num = -1;
+  ULONGEST thread_num = -1;
 
   status->kind = TARGET_WAITKIND_EXITED;
   status->value.integer = 0;
@@ -3221,7 +3221,7 @@ remote_async_wait (ptid_t ptid, struct target_waitstatus *status)
 {
   struct remote_state *rs = get_remote_state ();
   unsigned char *buf = alloca (rs->remote_packet_size);
-  int thread_num = -1;
+  ULONGEST thread_num = -1;
 
   status->kind = TARGET_WAITKIND_EXITED;
   status->value.integer = 0;
This page took 0.035141 seconds and 4 git commands to generate.