Avoid using 'private' C++ keyword as symbol
authorPedro Alves <palves@redhat.com>
Fri, 15 May 2015 15:00:41 +0000 (16:00 +0100)
committerPedro Alves <palves@redhat.com>
Fri, 15 May 2015 15:00:41 +0000 (16:00 +0100)
gdb/ChangeLog:
2015-05-15  Pedro Alves  <palves@redhat.com>

* linux-tdep.c (linux_find_memory_regions_full): Rename local
'private' to 'priv'.

gdb/ChangeLog
gdb/linux-tdep.c

index 63c015f..05c0b3f 100644 (file)
@@ -1,5 +1,10 @@
 2015-05-15  Pedro Alves  <palves@redhat.com>
 
+       * linux-tdep.c (linux_find_memory_regions_full): Rename local
+       'private' to 'priv'.
+
+2015-05-15  Pedro Alves  <palves@redhat.com>
+
        * nat/linux-nat.h: Include "target/waitstatus.h".
 
 2015-05-15  Yuanhui Zhang  <asmwarrior@gmail.com>
index 9d75b66..df42097 100644 (file)
@@ -1163,7 +1163,7 @@ linux_find_memory_regions_full (struct gdbarch *gdbarch,
          const char *permissions, *device, *filename;
          struct smaps_vmflags v;
          size_t permissions_len, device_len;
-         int read, write, exec, private;
+         int read, write, exec, priv;
          int has_anonymous = 0;
          int should_dump_p = 0;
          int mapping_anon_p;
@@ -1197,7 +1197,7 @@ linux_find_memory_regions_full (struct gdbarch *gdbarch,
             not have the VmFlags there.  In this case, there is
             really no way to know if we are dealing with VM_SHARED,
             so we just assume that VM_MAYSHARE is enough.  */
-         private = memchr (permissions, 'p', permissions_len) != 0;
+         priv = memchr (permissions, 'p', permissions_len) != 0;
 
          /* Try to detect if region should be dumped by parsing smaps
             counters.  */
@@ -1257,7 +1257,7 @@ linux_find_memory_regions_full (struct gdbarch *gdbarch,
            }
 
          if (has_anonymous)
-           should_dump_p = dump_mapping_p (filterflags, &v, private,
+           should_dump_p = dump_mapping_p (filterflags, &v, priv,
                                            mapping_anon_p, mapping_file_p,
                                            filename);
          else