[Epic-ID: ODUHIGH-464][Task-ID: ODUHIGH-483] Memeory related fix in FDD and TDD mode
[o-du/l2.git] / src / 5gnrsch / rg_sch_clist.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
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:     rg_sch_clist.x
29  
30 *********************************************************************21*/
31   
32 #ifndef __RGSCHRRCLIST__
33 #define __RGSCHRRCLIST__
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39
40 typedef struct rgSchRrCList   RgSchRrCList;
41 typedef struct rgSchRrCListCp RgSchRrCListCp;
42
43 /* doubly linked list */
44 struct rgSchRrCList
45 {
46    RgSchRrCList *next;        /* next */
47    RgSchRrCList *prev;        /* previous */
48    PTR    node;          /* node */
49 };
50
51 struct rgSchRrCListCp
52 {
53    RgSchRrCList *first;       /* first entry in list */
54    RgSchRrCList *crnt;        /* entry last accessed */
55    uint32_t     count;        /* number of entries */
56 };
57
58 Void         rgSCHRrCListInit     ARGS ((RgSchRrCListCp *lList));
59 Void         rgSCHRrCListAdd2Tail ARGS ((RgSchRrCListCp *lList, \
60                                                     RgSchRrCList *node));
61 /* Renamed functions to start with rgSCH */
62 RgSchRrCList *rgSCHRrCListDelFrm   ARGS ((RgSchRrCListCp *lList, \
63                                                     RgSchRrCList *node));
64 Void         rgSCHRrCListInsrtAtCrnt ARGS ((RgSchRrCListCp *lList, \
65                                                     RgSchRrCList *node));
66 /* LTE_ADV_FLAG_REMOVED_START */
67 Void rgSCHRrCListAdd2Crnt ARGS ((RgSchRrCListCp *lList, \
68                                         RgSchRrCList   *node));
69 /* LTE_ADV_FLAG_REMOVED_END */
70
71
72 #ifdef __cplusplus
73 }
74 #endif
75
76 #endif /* __RRCLIST__ */
77
78 /**********************************************************************
79  
80          End of file
81 **********************************************************************/