assert.c 932 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * Copyright (c) 2019 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <sys/__assert.h>
  7. #include <zephyr.h>
  8. /**
  9. *
  10. * @brief Assert Action Handler
  11. *
  12. * This routine implements the action to be taken when an assertion fails.
  13. *
  14. * System designers may wish to substitute this implementation to take other
  15. * actions, such as logging program counter, line number, debug information
  16. * to a persistent repository and/or rebooting the system.
  17. *
  18. * @param N/A
  19. *
  20. * @return N/A
  21. */
  22. #ifdef CONFIG_ASSERT_NO_FILE_INFO
  23. __weak void assert_post_action(void)
  24. #else
  25. __weak void assert_post_action(const char *file, unsigned int line)
  26. #endif
  27. {
  28. #ifndef CONFIG_ASSERT_NO_FILE_INFO
  29. ARG_UNUSED(file);
  30. ARG_UNUSED(line);
  31. #endif
  32. #ifdef CONFIG_USERSPACE
  33. /* User threads aren't allowed to induce kernel panics; generate
  34. * an oops instead.
  35. */
  36. if (k_is_user_context()) {
  37. k_oops();
  38. }
  39. #endif
  40. k_panic();
  41. }