elf: Add a way to check if tunable is set (BZ 27069)
[glibc.git] / include / errno.h
blobc361a785c24b928fd3f6b58ef11090b0efb9390b
1 #ifndef _ERRNO_H
2 #include <stdlib/errno.h>
3 #if !defined _ISOMAC && !defined __ASSEMBLER__
5 # if IS_IN (rtld)
6 # include <dl-sysdep.h>
7 # ifndef RTLD_PRIVATE_ERRNO
8 # error "dl-sysdep.h must define RTLD_PRIVATE_ERRNO!"
9 # endif
10 # else
11 # define RTLD_PRIVATE_ERRNO 0
12 # endif
14 # if RTLD_PRIVATE_ERRNO
15 /* The dynamic linker uses its own private errno variable.
16 All access to errno inside the dynamic linker is serialized,
17 so a single (hidden) global variable is all it needs. */
19 # undef errno
20 # define errno rtld_errno
21 extern int rtld_errno attribute_hidden;
23 # elif IS_IN_LIB && !IS_IN (rtld)
25 # undef errno
26 # if IS_IN (libc)
27 # define errno __libc_errno
28 # else
29 # define errno errno /* For #ifndef errno tests. */
30 # endif
31 extern __thread int errno attribute_tls_model_ie;
33 # endif /* IS_IN_LIB */
35 # define __set_errno(val) (errno = (val))
37 extern int *__errno_location (void) __THROW __attribute_const__
38 # if RTLD_PRIVATE_ERRNO
39 attribute_hidden
40 # endif
42 libc_hidden_proto (__errno_location)
44 #endif /* !_ISOMAC && !__ASSEMBLER__ */
45 #endif /* !_ERRNO_H */