log_list.c 669 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include "log_list.h"
  7. void log_list_init(struct log_list_t *list)
  8. {
  9. list->tail = NULL;
  10. list->head = NULL;
  11. }
  12. void log_list_add_tail(struct log_list_t *list, struct log_msg *msg)
  13. {
  14. if (list->head == NULL) {
  15. list->head = msg;
  16. } else {
  17. list->tail->next = msg;
  18. }
  19. list->tail = msg;
  20. msg->next = NULL;
  21. }
  22. struct log_msg *log_list_head_peek(struct log_list_t *list)
  23. {
  24. return list->head;
  25. }
  26. struct log_msg *log_list_head_get(struct log_list_t *list)
  27. {
  28. struct log_msg *msg = list->head;
  29. if (list->head != NULL) {
  30. list->head = list->head->next;
  31. }
  32. return msg;
  33. }