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. |
-
返回值:
-
-
Dependency:
-
- los_list.h: the header file that contains the API declaration.
-
参见:
-
LOS_ListAdd | LOS_ListHeadInsert
-
自从:
-
Huawei LiteOS V100R001C00
在文件los_list.h第157行定义。
参考 LOS_ListAdd()及LOS_DL_LIST::pstPrev.