From: Richard Henderson Date: Wed, 8 Feb 2012 19:44:40 +0000 (-0800) Subject: alpha: Define TLS_DTV_UNALLOCATED. X-Git-Tag: upstream/2.30~10627^2~288 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6aa8bd8cd15f1563db859805e9681cb750247667;p=external%2Fglibc.git alpha: Define TLS_DTV_UNALLOCATED. --- diff --git a/ChangeLog.alpha b/ChangeLog.alpha index a1732f9..ae6839d 100644 --- a/ChangeLog.alpha +++ b/ChangeLog.alpha @@ -1,5 +1,7 @@ 2012-02-08 Richard Henderson + * sysdeps/alpha/dl-tls.h (TLS_DTV_UNALLOCATED): New. + * sysdeps/unix/sysv/linux/alpha/configure.in: New file. * sysdeps/unix/sysv/linux/alpha/configure: Build. * sysdeps/unix/sysv/linux/alpha/kernel-features.h: Protect from diff --git a/sysdeps/alpha/dl-tls.h b/sysdeps/alpha/dl-tls.h index f81f95d..d40d0a4 100644 --- a/sysdeps/alpha/dl-tls.h +++ b/sysdeps/alpha/dl-tls.h @@ -25,5 +25,7 @@ typedef struct unsigned long int ti_offset; } tls_index; - extern void *__tls_get_addr (tls_index *ti); + +/* Value used for dtv entries for which the allocation is delayed. */ +#define TLS_DTV_UNALLOCATED ((void *) -1l)