list_for_each_safe is only used within OpenOCD.
 
Symbols
loading...
Files
loading...

list_for_each_safe macro

Syntax

#define list_for_each_safe(p, n, head) \     for (p = (head)->next, n = (p)->next; p != (head); p = n, n = (p)->next)

Arguments

p

n

References

LocationText
list.h:148
#define list_for_each_safe(p, n, head) \
esp32_apptrace.c:317
list_for_each_safe(pos, tmp, head) {
esp32_apptrace.c:328
list_for_each_safe(pos, tmp, head) {