2 #include <stdlib/errno.h>
3 #if !defined _ISOMAC && !defined __ASSEMBLER__
6 # include <dl-sysdep.h>
7 # ifndef RTLD_PRIVATE_ERRNO
8 # error "dl-sysdep.h must define RTLD_PRIVATE_ERRNO!"
11 # define RTLD_PRIVATE_ERRNO 0
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. */
20 # define errno rtld_errno
21 extern int rtld_errno attribute_hidden
;
23 # elif IS_IN_LIB && !IS_IN (rtld)
27 # define errno __libc_errno
29 # define errno errno /* For #ifndef errno tests. */
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
42 libc_hidden_proto (__errno_location
)
44 #endif /* !_ISOMAC && !__ASSEMBLER__ */
45 #endif /* !_ERRNO_H */