Replace unsigned long with uint64_t

This commit is contained in:
H.J. Lu 2012-03-22 10:02:57 -07:00
parent b749dbb9b7
commit 1da7940c77
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
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

View 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;