[Epic-ID: ODUHIGH-402][Task-ID: ODUHIGH-418] Harq feature changes
[o-du/l2.git] / src / cm / cm_llist.x
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18 \f
19 /********************************************************************20**
20   
21      Name:     common - linked list functions
22   
23      Type:     C include file
24   
25      Desc:     Structures, variables and typedefs required by the
26                linked list management routines.
27  
28      File:     cm_llist.x
29  
30 *********************************************************************21*/
31   
32 #ifndef __CMLLISTX__
33 #define __CMLLISTX__
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 \f
40 typedef struct cmLList CmLList;
41 typedef struct cmLListCp CmLListCp;
42
43 /* doubly linked list */
44 struct cmLList
45 {
46    CmLList *next;        /* next */
47    CmLList *prev;        /* previous */
48    PTR    node;          /* node */
49 };
50
51 struct cmLListCp
52 {
53    CmLList *first;       /* first entry in list */
54    CmLList *last;        /* last entry in list */
55    CmLList *crnt;        /* entry last accessed */
56    uint32_t     count;        /* number of entries */
57 };
58
59 Void     cmLListInit     ARGS ((CmLListCp *lList));
60 Void     cmLListAdd2Head ARGS ((CmLListCp *lList, CmLList *node));
61 Void     cmLListAdd2Tail ARGS ((CmLListCp *lList, CmLList *node));
62 Void     cmLListInsCrnt  ARGS ((CmLListCp *lList, CmLList *node));
63 /* cm_llist_x_001.main_6 - Add function */
64 Void     cmLListInsAfterCrnt  ARGS ((CmLListCp *lList, CmLList *node));
65 CmLList *cmLListDelFrm   ARGS ((CmLListCp *lList, CmLList *node));
66 Void cmLListCatLList ARGS (( CmLListCp *list1, CmLListCp *list2));
67 Void cmLListDeleteLList ARGS ((CmLListCp *lList));
68 #ifdef __cplusplus
69 }
70 #endif
71
72 #endif /* __CMLLISTX__ */
73
74 \f 
75 /********************************************************************30**
76   
77          End of file
78 **********************************************************************/