Searched refs:listObject (Results 1 – 1 of 1) sorted by relevance
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
D | linux_workqueue.c | 61 #define LIST_FOR_WORK(pos, listObject, type, field) \ argument 62 for ((pos) = LOS_DL_LIST_ENTRY((listObject)->next, type, field); \ 63 &(pos)->field != (listObject); \ 66 #define LIST_FOR_WORK_DEL(pos, nextNode, listObject, type, field) \ argument 67 for ((pos) = LOS_DL_LIST_ENTRY((listObject)->next, type, field), \ 69 &(pos)->field != (listObject); \
|