1.核心结构体List_t 是链表本身,管理链表。ListItem_t 是“正常节点”,用来挂载任务等对象。MiniListItem_t 是“精简节点”,专门当链表的“哨兵/结束标记”。ListItem_t普通节点xItemValue, pxNext, pxPrevious, pvOwner, pvContainer真正存储任务/对象的节点MiniListItem_t精简节点xItemValue, pxNext, pxPrevious链表头尾的哨兵节点List_t容器uxNumberOfItems, pxIndex, xListEnd管理整个链表,带有结束标记struct xLIST_ITEM...