diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-03-22 10:02:57 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-03-22 10:02:57 -0700 |
commit | 1da7940c77153881471f01d0510abb392aa164c5 (patch) | |
tree | b270c6d8746d671ca3ceecbd278b803d99c6daca | |
parent | b749dbb9b73abaff7df9d25b9103cc22cafb0449 (diff) | |
download | glibc-1da7940c77153881471f01d0510abb392aa164c5.tar glibc-1da7940c77153881471f01d0510abb392aa164c5.tar.gz glibc-1da7940c77153881471f01d0510abb392aa164c5.tar.bz2 glibc-1da7940c77153881471f01d0510abb392aa164c5.zip |
Replace unsigned long with uint64_t
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/x86_64/dl-tls.h | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -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. diff --git a/sysdeps/x86_64/dl-tls.h b/sysdeps/x86_64/dl-tls.h index 4de5815605..56162ee64a 100644 --- a/sysdeps/x86_64/dl-tls.h +++ b/sysdeps/x86_64/dl-tls.h @@ -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; |