thread_entry.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Thread entry
  9. *
  10. * This file provides the common thread entry function
  11. */
  12. #include <kernel.h>
  13. #ifdef CONFIG_THREAD_LOCAL_STORAGE
  14. __thread k_tid_t z_tls_current;
  15. #endif
  16. /*
  17. * Common thread entry point function (used by all threads)
  18. *
  19. * This routine invokes the actual thread entry point function and passes
  20. * it three arguments. It also handles graceful termination of the thread
  21. * if the entry point function ever returns.
  22. *
  23. * This routine does not return, and is marked as such so the compiler won't
  24. * generate preamble code that is only used by functions that actually return.
  25. */
  26. FUNC_NORETURN void z_thread_entry(k_thread_entry_t entry,
  27. void *p1, void *p2, void *p3)
  28. {
  29. #ifdef CONFIG_THREAD_LOCAL_STORAGE
  30. z_tls_current = z_current_get();
  31. #endif
  32. entry(p1, p2, p3);
  33. k_thread_abort(k_current_get());
  34. /*
  35. * Compiler can't tell that k_thread_abort() won't return and issues a
  36. * warning unless we tell it that control never gets this far.
  37. */
  38. CODE_UNREACHABLE; /* LCOV_EXCL_LINE */
  39. }