errno_private.h 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (c) 2018 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SYS_ERRNO_PRIVATE_H_
  7. #define ZEPHYR_INCLUDE_SYS_ERRNO_PRIVATE_H_
  8. #include <toolchain.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /* NOTE: located here to avoid include dependency loops between errno.h
  13. * and kernel.h
  14. */
  15. #ifdef CONFIG_ERRNO_IN_TLS
  16. extern __thread int z_errno_var;
  17. static inline int *z_errno(void)
  18. {
  19. return &z_errno_var;
  20. }
  21. #else
  22. /**
  23. * return a pointer to a memory location containing errno
  24. *
  25. * errno is thread-specific, and can't just be a global. This pointer
  26. * is guaranteed to be read/writable from user mode.
  27. *
  28. * @return Memory location of errno data for current thread
  29. */
  30. __syscall int *z_errno(void);
  31. #endif /* CONFIG_ERRNO_IN_TLS */
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35. #ifndef CONFIG_ERRNO_IN_TLS
  36. #include <syscalls/errno_private.h>
  37. #endif /* CONFIG_ERRNO_IN_TLS */
  38. #endif /* ZEPHYR_INCLUDE_SYS_ERRNO_PRIVATE_H_ */