X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fphy_stub%2Fl1_bdy2.c;h=2edaa5b1a8180d6a29cb98b61e8e6a5f0cb56dcf;hb=ba2574ac618b40905509604da8d3a2b1b9e39664;hp=67f66f88600c68968262d48cd0f6d3e6a623f34c;hpb=fe3e15254e67fd96dbfabec4bf7245c3b64ee415;p=o-du%2Fl2.git diff --git a/src/phy_stub/l1_bdy2.c b/src/phy_stub/l1_bdy2.c index 67f66f886..2edaa5b1a 100644 --- a/src/phy_stub/l1_bdy2.c +++ b/src/phy_stub/l1_bdy2.c @@ -18,14 +18,12 @@ /* This file handles slot indication */ -#include -#include -#include -#include +#include "common_def.h" #include "lphy_stub.h" #include "du_log.h" uint16_t l1BuildAndSendSlotIndication(); +pthread_t thread = 0; void *GenerateTicks(void *arg) { @@ -45,15 +43,25 @@ void *GenerateTicks(void *arg) return((void *)NULLP); } -void duStartSlotIndicaion() +void l1HdlSlotIndicaion(bool stopSlotInd) { - pthread_t thread; int ret; - ret = pthread_create(&thread, NULL, GenerateTicks, NULL); - if(ret) + if(!stopSlotInd) { - DU_LOG("\nPHY_STUB: Unable to create thread"); + ret = pthread_create(&thread, NULL, GenerateTicks, NULL); + if(ret) + { + DU_LOG("\nPHY_STUB: Unable to create thread"); + } + } + else + { + ret = pthread_cancel(thread); + if(ret) + { + DU_LOG("\nPHY_STUB: Unable to stop thread"); + } } }