sib1Changes in DL TTI
[o-du/l2.git] / src / 5gnrmac / mac_slot_ind.c
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 /* header include files (.h) */
19 #include "envopt.h"        /* environment options */
20 #include "envdep.h"        /* environment dependent */
21 #include "envind.h"        /* environment independent */
22 #include "gen.h"           /* general */
23 #include "ssi.h"           /* system services */
24 #include "cm_tkns.h"       /* Common Token Defines */
25 #include "cm_llist.h"      /* Common Link List Defines */
26 #include "cm_hash.h"       /* Common Hash List Defines */
27 #include "cm_mblk.h"       /* common memory link list library */
28 #include "cm_lte.h"        /* Common LTE Defines */
29 #include "tfu.h"           /* RGU Interface includes */
30 #include "lrg.h"
31 #include "gen.x"           /* general */
32 #include "ssi.x"           /* system services */
33 #include "cm5.x"           /* system services */
34 #include "cm_tkns.x"       /* Common Token Definitions */
35 #include "cm_llist.x"      /* Common Link List Definitions */
36 #include "cm_lib.x"        /* Common Library Definitions */
37 #include "cm_hash.x"       /* Common Hash List Definitions */
38 #include "cm_mblk.x"       /* common memory link list library */
39 #include "cm_lte.x"        /* Common LTE Defines */
40 #include "tfu.x"           /* RGU Interface includes */
41 #include "lrg.x"
42 #include "du_app_mac_inf.h"
43 #include "mac.h"
44
45 int MacProcDlBrdcstAlloc(Pst *pst, DlBrdcstAlloc *dlBrdcstAlloc)
46 {
47    if(dlBrdcstAlloc != NULLP)
48    {
49                 MacDlSlot *currDlSlot =
50                 &macCb.macCell->dlSlot[dlBrdcstAlloc->slotIndInfo.slot % MAX_SLOT_SUPPORTED];
51       memcpy(&currDlSlot->cellBroadcastInfo, dlBrdcstAlloc, sizeof(DlBrdcstAlloc)); 
52    }
53    return ROK;
54 }
55
56 /**********************************************************************
57   End of file
58  **********************************************************************/
59