On Wed, 16 Dec 2009 15:27:13 +0100
Carmelo AMOROSO <[email protected]> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> Hans-Christian Egtvedt wrote:
> > This patch will convert all the #ifdef USE_TLS and #if USE_TLS to
> >  #if defined(USE_TLS) && USE_TLS.
> > 
> > By checking if the USE_TLS is defined before checking its value will result 
> > in
> > correct behavior for architectures not defining this config symbol.
> > 
> 
> Hi,
> why not using now __UCLIBC_HAS_TLS__ instead that is defined for NTPL
> case, and undefined otherwise ?
> 

AFAICT it should still separate between USE_TLS 0 and 1, but perhaps
the check should be:

#ifdef __UCLIBC_HAS_TLS__ && USE_TLS ?

PS! I have not followed the TLS integration closely.

-- 
Best regards,
Hans-Christian Egtvedt
_______________________________________________
uClibc mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/uclibc

Reply via email to