LITE_OS_SEC_ALW_INLINE STATIC_INLINE VOID LOS_ListTailInsert ( LOS_DL_LIST pstList,
LOS_DL_LIST pstNode  
)

Insert a node to the tail of a doubly linked list.

Description:
This API is used to insert a new node to the tail of a doubly linked list.
注意:
  • The parameters passed in should be ensured to be legal pointers.
参数:
参数名称 描述
pstList  [IN] Doubly linked list where the new node is inserted.
pstNode  [IN] New node to be inserted.
返回值:
返回值 描述
None. 
Dependency:
  • los_list.h: the header file that contains the API declaration.
参见:
LOS_ListAdd | LOS_ListHeadInsert
自从:
Huawei LiteOS V100R001C00

在文件los_list.h157行定义。

参考 LOS_ListAdd()LOS_DL_LIST::pstPrev.

00158 {
00159     LOS_ListAdd(pstList->pstPrev, pstNode);
00160 }

函数调用图: