errno.c 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /** @file
  7. *
  8. * @brief Per-thread errno accessor function
  9. *
  10. * Allow accessing the errno for the current thread without involving the
  11. * context switching.
  12. */
  13. #include <kernel.h>
  14. #include <syscall_handler.h>
  15. /*
  16. * Define _k_neg_eagain for use in assembly files as errno.h is
  17. * not assembly language safe.
  18. * FIXME: wastes 4 bytes
  19. */
  20. const int _k_neg_eagain = -EAGAIN;
  21. #ifdef CONFIG_ERRNO
  22. #ifdef CONFIG_ERRNO_IN_TLS
  23. __thread int z_errno_var;
  24. #else
  25. #ifdef CONFIG_USERSPACE
  26. int *z_impl_z_errno(void)
  27. {
  28. /* Initialized to the lowest address in the stack so the thread can
  29. * directly read/write it
  30. */
  31. return &_current->userspace_local_data->errno_var;
  32. }
  33. static inline int *z_vrfy_z_errno(void)
  34. {
  35. return z_impl_z_errno();
  36. }
  37. #include <syscalls/z_errno_mrsh.c>
  38. #else
  39. int *z_impl_z_errno(void)
  40. {
  41. return &_current->errno_var;
  42. }
  43. #endif /* CONFIG_USERSPACE */
  44. #endif /* CONFIG_ERRNO_IN_TLS */
  45. #endif /* CONFIG_ERRNO */