Replace unsigned long with uint64_t
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 22 Mar 2012 17:02:57 +0000 (10:02 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 22 Mar 2012 17:02:57 +0000 (10:02 -0700)
ChangeLog
sysdeps/x86_64/dl-tls.h

index 35afce9..430e7d2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
 
+       * sysdeps/x86_64/dl-tls.h (dl_tls_index): Replace unsigned long
+       with uint64_t.
+
+2012-03-22  H.J. Lu  <hongjiu.lu@intel.com>
+
        * sysdeps/generic/ldsodefs.h (struct La_x32_regs): New forward
        declaration.
        (struct La_x32_retval): Likewise.
index 4de5815..56162ee 100644 (file)
@@ -20,8 +20,8 @@
 /* Type used for the representation of TLS information in the GOT.  */
 typedef struct dl_tls_index
 {
-  unsigned long int ti_module;
-  unsigned long int ti_offset;
+  uint64_t ti_module;
+  uint64_t ti_offset;
 } tls_index;