Temporary fix of o1 compilation .[Issue-Id: ODUHIGH-285]
[o-du/l2.git] / src / phy_stub / l1_bdy2.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
19 /* This file handles slot indication */
20
21 #include "common_def.h"
22 #include "lphy_stub.h"
23 #include "du_log.h"
24
25 uint16_t l1BuildAndSendSlotIndication();
26 pthread_t thread = 0;
27
28 void *GenerateTicks(void *arg)
29 {
30    int     milisec = 1;        /* 1ms */
31    struct timespec req = {0};
32
33    req.tv_sec = 0;
34    req.tv_nsec = milisec * 1000000L;
35
36    while(1)
37    {
38       nanosleep(&req, (struct timespec *)NULL);
39       
40       /* Send Slot indication indication to lower mac */
41       l1BuildAndSendSlotIndication();
42    }
43    return((void *)NULLP);
44 }
45
46 void l1HdlSlotIndicaion(bool stopSlotInd)
47 {
48    int ret;
49
50    if(!stopSlotInd)
51    {
52       ret = pthread_create(&thread, NULL, GenerateTicks, NULL);
53       if(ret)
54       {
55          DU_LOG("\nPHY_STUB: Unable to create thread");
56       }
57    }
58    else
59    {
60       ret = pthread_cancel(thread);
61       if(ret)
62       {
63          DU_LOG("\nPHY_STUB: Unable to stop thread");
64       }
65    }
66 }
67
68 /**********************************************************************
69          End of file
70 **********************************************************************/