* sysdeps/generic/errno-loc.c [! USE___THREAD]: Use this conditional

in place of [!(USE_TLS && HAVE___THREAD)].
	(__errno_location) [! USE___THREAD]: Define as strong, not weak.
This commit is contained in:
Roland McGrath 2002-11-02 01:53:44 +00:00
parent bde40c2f9a
commit cfbc71d7dd
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2002-11-01 Roland McGrath <roland@redhat.com>
* sysdeps/generic/errno-loc.c [! USE___THREAD]: Use this conditional
in place of [!(USE_TLS && HAVE___THREAD)].
(__errno_location) [! USE___THREAD]: Define as strong, not weak.
2002-10-31 Roger Sayle <roger@eyesopen.com>
* sysdeps/i386/soft-fp/sfp-machine.h (_FP_NANFRAC_Q, _FP_NANSIGN_Q):

View File

@ -21,13 +21,15 @@
#include <errno.h>
#include <tls.h>
#if !(USE_TLS && HAVE___THREAD)
#if ! USE___THREAD
#undef errno
extern int errno;
#endif
int *
#if ! USE___THREAD
weak_const_function
#endif
__errno_location (void)
{
return &errno;