Change 'len' of linux_common_xfer_osdata to ULONGEST.
authorYao Qi <yao@codesourcery.com>
Fri, 3 Jan 2014 11:19:51 +0000 (19:19 +0800)
committerYao Qi <yao@codesourcery.com>
Tue, 14 Jan 2014 14:20:51 +0000 (22:20 +0800)
gdb:

2014-01-14  Yao Qi  <yao@codesourcery.com>

* common/linux-osdata.c (linux_xfer_osdata_processes): Change
type of 'len' to ULONGEST.
(linux_xfer_osdata_processgroups): Likewise.
(linux_xfer_osdata_threads): Likewise.
(linux_xfer_osdata_fds): Likewise.
(linux_xfer_osdata_isockets): Likewise.
(linux_xfer_osdata_shm): Likewise.
(linux_xfer_osdata_sem): Likewise.
(linux_xfer_osdata_msg): Likewise.
(linux_common_xfer_osdata): Likewise.
(struct osdata_type) <getter>: Likewise.
* common/linux-osdata.h (linux_common_xfer_osdata): Update
the declaration.

gdb/ChangeLog
gdb/common/linux-osdata.c
gdb/common/linux-osdata.h

index f157c9982bc6b9e4485d6abb51c35cf111e7db5a..861d2771788df649010ee33f826e3e1b103589e5 100644 (file)
@@ -1,3 +1,19 @@
+2014-01-14  Yao Qi  <yao@codesourcery.com>
+
+       * common/linux-osdata.c (linux_xfer_osdata_processes): Change
+       type of 'len' to ULONGEST.
+       (linux_xfer_osdata_processgroups): Likewise.
+       (linux_xfer_osdata_threads): Likewise.
+       (linux_xfer_osdata_fds): Likewise.
+       (linux_xfer_osdata_isockets): Likewise.
+       (linux_xfer_osdata_shm): Likewise.
+       (linux_xfer_osdata_sem): Likewise.
+       (linux_xfer_osdata_msg): Likewise.
+       (linux_common_xfer_osdata): Likewise.
+       (struct osdata_type) <getter>: Likewise.
+       * common/linux-osdata.h (linux_common_xfer_osdata): Update
+       the declaration.
+
 2014-01-14  Yao Qi  <yao@codesourcery.com>
 
        * target.h (target_xfer_partial_ftype): Update.
index 359ab181c2ca5fbad5adbd79be69062d1cdee593..805850cbbc907a5bafd87134d80784453f200b23 100644 (file)
@@ -301,7 +301,7 @@ get_cores_used_by_process (PID_T pid, int *cores)
 
 static LONGEST
 linux_xfer_osdata_processes (gdb_byte *readbuf,
-                            ULONGEST offset, LONGEST len)
+                            ULONGEST offset, ULONGEST len)
 {
   /* We make the process list snapshot when the object starts to be read.  */
   static const char *buf;
@@ -449,7 +449,7 @@ compare_processes (const void *process1, const void *process2)
 
 static LONGEST
 linux_xfer_osdata_processgroups (gdb_byte *readbuf,
-                                ULONGEST offset, LONGEST len)
+                                ULONGEST offset, ULONGEST len)
 {
   /* We make the process list snapshot when the object starts to be read.  */
   static const char *buf;
@@ -565,7 +565,7 @@ linux_xfer_osdata_processgroups (gdb_byte *readbuf,
 
 static LONGEST
 linux_xfer_osdata_threads (gdb_byte *readbuf,
-                          ULONGEST offset, LONGEST len)
+                          ULONGEST offset, ULONGEST len)
 {
   /* We make the process list snapshot when the object starts to be read.  */
   static const char *buf;
@@ -679,7 +679,7 @@ linux_xfer_osdata_threads (gdb_byte *readbuf,
 
 static LONGEST
 linux_xfer_osdata_fds (gdb_byte *readbuf,
-                      ULONGEST offset, LONGEST len)
+                      ULONGEST offset, ULONGEST len)
 {
   /* We make the process list snapshot when the object starts to be read.  */
   static const char *buf;
@@ -986,7 +986,7 @@ print_sockets (unsigned short family, int tcp, struct buffer *buffer)
 
 static LONGEST
 linux_xfer_osdata_isockets (gdb_byte *readbuf,
-                           ULONGEST offset, LONGEST len)
+                           ULONGEST offset, ULONGEST len)
 {
   static const char *buf;
   static LONGEST len_avail = -1;
@@ -1067,7 +1067,7 @@ group_from_gid (char *group, int maxlen, gid_t gid)
 
 static LONGEST
 linux_xfer_osdata_shm (gdb_byte *readbuf,
-                      ULONGEST offset, LONGEST len)
+                      ULONGEST offset, ULONGEST len)
 {
   static const char *buf;
   static LONGEST len_avail = -1;
@@ -1195,7 +1195,7 @@ linux_xfer_osdata_shm (gdb_byte *readbuf,
 
 static LONGEST
 linux_xfer_osdata_sem (gdb_byte *readbuf,
-                      ULONGEST offset, LONGEST len)
+                      ULONGEST offset, ULONGEST len)
 {
   static const char *buf;
   static LONGEST len_avail = -1;
@@ -1307,7 +1307,7 @@ linux_xfer_osdata_sem (gdb_byte *readbuf,
 
 static LONGEST
 linux_xfer_osdata_msg (gdb_byte *readbuf,
-                      ULONGEST offset, LONGEST len)
+                      ULONGEST offset, ULONGEST len)
 {
   static const char *buf;
   static LONGEST len_avail = -1;
@@ -1433,7 +1433,7 @@ linux_xfer_osdata_msg (gdb_byte *readbuf,
 
 static LONGEST
 linux_xfer_osdata_modules (gdb_byte *readbuf,
-                          ULONGEST offset, LONGEST len)
+                          ULONGEST offset, ULONGEST len)
 {
   static const char *buf;
   static LONGEST len_avail = -1;
@@ -1542,7 +1542,7 @@ struct osdata_type {
   char *type;
   char *title;
   char *description;
-  LONGEST (*getter) (gdb_byte *readbuf, ULONGEST offset, LONGEST len);
+  LONGEST (*getter) (gdb_byte *readbuf, ULONGEST offset, ULONGEST len);
 } osdata_table[] = {
   { "processes", "Processes", "Listing of all processes",
     linux_xfer_osdata_processes },
@@ -1567,7 +1567,7 @@ struct osdata_type {
 
 LONGEST
 linux_common_xfer_osdata (const char *annex, gdb_byte *readbuf,
-                         ULONGEST offset, LONGEST len)
+                         ULONGEST offset, ULONGEST len)
 {
   if (!annex || *annex == '\0')
     {
index 73def8687b0ca1f711363765fca9056e48549b05..e9d4f3c81c3be975acd643ac2a109823d990067a 100644 (file)
@@ -24,6 +24,6 @@
 
 extern int linux_common_core_of_thread (ptid_t ptid);
 extern LONGEST linux_common_xfer_osdata (const char *annex, gdb_byte *readbuf,
-                                        ULONGEST offset, LONGEST len);
+                                        ULONGEST offset, ULONGEST len);
 
 #endif