blob: e584f21f85692c3a68e7f47b6c38e1cfd76d42bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#include <features.h>
#ifdef __UCLIBC_HAS_TLS__
__thread int errno;
__thread int h_errno;
#ifdef SHARED
/*
* FIXME: Add usage of hidden attribute for both of these when used in
* the shared library. It currently crashes the linker when doing
* section relocations.
*/
extern __thread int __libc_errno __attribute__ ((alias ("errno")));
extern __thread int __libc_h_errno __attribute__ ((alias ("h_errno")));
#else
extern __thread int __libc_errno __attribute__ ((alias ("errno")));
extern __thread int __libc_h_errno __attribute__ ((alias ("h_errno")));
#endif
#define h_errno __libc_h_errno
#else
#include "internal_errno.h"
#if 0
/* Unfortunately, this doesn't work... */
int h_errno __attribute__ ((section (".bss"))) = 0;
int errno __attribute__ ((section (".bss"))) = 0;
#else
int errno = 0;
int h_errno = 0;
#endif
#ifdef __UCLIBC_HAS_THREADS__
libc_hidden_def(errno)
weak_alias(errno, _errno)
libc_hidden_def(h_errno)
weak_alias(h_errno, _h_errno)
#endif
#endif
|