log_list.h 1015 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef LOG_LIST_H_
  7. #define LOG_LIST_H_
  8. #include <logging/log_msg.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /** @brief List instance structure. */
  13. struct log_list_t {
  14. struct log_msg *head;
  15. struct log_msg *tail;
  16. };
  17. /** @brief Initialize log list instance.
  18. *
  19. * @param list List instance.
  20. */
  21. void log_list_init(struct log_list_t *list);
  22. /** @brief Add item to the tail of the list.
  23. *
  24. * @param list List instance.
  25. * @param msg Message.
  26. *
  27. */
  28. void log_list_add_tail(struct log_list_t *list, struct log_msg *msg);
  29. /** @brief Remove item from the head of the list.
  30. *
  31. * @param list List instance.
  32. *
  33. * @return Message.
  34. */
  35. struct log_msg *log_list_head_get(struct log_list_t *list);
  36. /** @brief Peek item from the head of the list.
  37. *
  38. * @param list List instance.
  39. *
  40. * @return Message.
  41. */
  42. struct log_msg *log_list_head_peek(struct log_list_t *list);
  43. #ifdef __cplusplus
  44. }
  45. #endif
  46. #endif /* LOG_LIST_H_ */