diff options
author | Roland McGrath <roland@hack.frob.com> | 2014-06-11 12:23:35 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2014-06-11 12:23:35 -0700 |
commit | ba5ec6116cd24ce73a135eba925840e49e358dfc (patch) | |
tree | 6dca18f357da99e734c3768331e9a50c7e00e0b4 /sysdeps/alpha | |
parent | f12b48148690e7769ab485aa4097c932f67f33dd (diff) | |
download | glibc-ba5ec6116cd24ce73a135eba925840e49e358dfc.zip glibc-ba5ec6116cd24ce73a135eba925840e49e358dfc.tar.gz glibc-ba5ec6116cd24ce73a135eba925840e49e358dfc.tar.bz2 |
Alpha: Define TLS_DEFINE_INIT_TP
Diffstat (limited to 'sysdeps/alpha')
-rw-r--r-- | sysdeps/alpha/nptl/tls.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/alpha/nptl/tls.h b/sysdeps/alpha/nptl/tls.h index fbc579a..ee8962e 100644 --- a/sysdeps/alpha/nptl/tls.h +++ b/sysdeps/alpha/nptl/tls.h @@ -87,6 +87,9 @@ typedef struct # define TLS_INIT_TP(tcbp) \ (__builtin_set_thread_pointer ((void *)(tcbp)), NULL) +/* Value passed to 'clone' for initialization of the thread register. */ +# define TLS_DEFINE_INIT_TP(tp, pd) void *tp = (pd) + 1 + /* Return the address of the dtv for the current thread. */ # define THREAD_DTV() \ (((tcbhead_t *) __builtin_thread_pointer ())->dtv) |