blob: 70f7e9681a8cf779d1157f7be028e455710e4dce (
plain)
1
2
3
4
5
6
7
8
9
|
/* Type used for the representation of TLS information in the GOT. */
typedef struct
{
unsigned long int ti_module;
unsigned long int ti_offset;
} tls_index;
extern void *__tls_get_addr (tls_index *ti);
|