X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcm%2Fcm_bdy5.c;h=6099a90b513b8c3d91646aa3761a8167c9fbd89c;hb=c98e69a3cfa10b1b47dafe94062dc68817cae6a1;hp=bd8cfa6e6da0c7d535cb3f0dacc068257e161b5b;hpb=9c8b78da0f4ef42dae5e30a3061463b81327e7a0;p=o-du%2Fl2.git diff --git a/src/cm/cm_bdy5.c b/src/cm/cm_bdy5.c index bd8cfa6e6..6099a90b5 100644 --- a/src/cm/cm_bdy5.c +++ b/src/cm/cm_bdy5.c @@ -86,7 +86,7 @@ * * Desc: Handle a timer entry * -* Ret: RETVOID +* Ret: void * * Notes: * @@ -95,23 +95,16 @@ */ #ifdef SS_FAP -#ifdef ANSI Void cmPrcTmr ( CmTqCp *tqCp, /* timing que control point */ CmTqType *tq, /* timing queue */ PFV func /* function */ ) -#else -Void cmPrcTmr(tqCp, tq, func) -CmTqCp *tqCp; /* connection control block */ -CmTqType *tq; /* message buffer */ -PFV func; /* function */ -#endif { /**/ - U32 expire; - U32 entry; + uint32_t expire; + uint32_t entry; S16 event; PTR cb; CmTimer *tmp1; @@ -139,7 +132,7 @@ PFV func; /* function */ ++tqCp->nxtEnt; expire = tqCp->nxtEnt; /* cm_bdy5_c_002.113 - Modification for SRegCfgTmr support */ - entry = (U32) (expire % (U32)(tqCp->tmrLen)); + entry = (uint32_t) (expire % (uint32_t)(tqCp->tmrLen)); tmp2 = &tq[entry].first; while ((tmp1 = *tmp2) != NULLP) @@ -159,33 +152,26 @@ PFV func; /* function */ else tmp2 = &tmp1->next; } - RETVOID; + return; } /* end of cmPrcTmr */ #else /* not defined SS_FAP */ -#ifdef ANSI Void cmPrcTmr ( CmTqCp *tqCp, /* timing que control point */ CmTqType *tq, /* timing queue */ PFV func /* function */ ) -#else -Void cmPrcTmr(tqCp, tq, func) -CmTqCp *tqCp; /* connection control block */ -CmTqType *tq; /* message buffer */ -PFV func; /* function */ -#endif { /**/ - U32 expire; - U32 entry, entry1; + uint32_t expire; + uint32_t entry, entry1; S16 event; CmTqType *tqEnt, *tqEnt1; PTR cb; CmTimer *tmp1; - VOLATILE U32 startTime = 0; + volatile uint32_t startTime = 0; /*starting Task*/ @@ -211,8 +197,7 @@ PFV func; /* function */ ++tqCp->nxtEnt; expire = tqCp->nxtEnt; - tqCp->tmrLen = 1; - entry = (U32) (expire % (U32)(tqCp->tmrLen)); + entry = (uint32_t) (expire % (uint32_t)(tqCp->tmrLen)); tqCp->tmp = (tqEnt = &tq[entry])->first; while ((tmp1 = tqCp->tmp) != NULLP) @@ -236,7 +221,7 @@ PFV func; /* function */ } else { - entry1 = (U32) (tmp1->tqExpire % (U32)(tqCp->tmrLen)); + entry1 = (uint32_t) (tmp1->tqExpire % (uint32_t)(tqCp->tmrLen)); tqEnt1 = &tq[entry1]; CM_RMV_TQCP(tqEnt, tmp1); tmp1->entIdx = entry1; @@ -247,7 +232,7 @@ PFV func; /* function */ /*stoping Task*/ SStopTask(startTime, PID_CM_PRC_TMR); - RETVOID; + return; } /* end of cmPrcTmr */ #endif /* SS_FAP */ @@ -259,27 +244,21 @@ PFV func; /* function */ * * Desc: initialize timers * -* Ret: RETVOID +* Ret: void * * Notes: Connection Oriented Control * * File: cm_bdy5.c * */ -#ifdef ANSI Void cmInitTimers ( CmTimer *timers, /* timer list */ -U8 max /* maximum tmrs */ +uint8_t max /* maximum tmrs */ ) -#else -Void cmInitTimers(timers, max) -CmTimer *timers; /* timer list */ -U8 max; /* maximum tmrs */ -#endif { CmTimer *tPtr; - REG1 U8 i; + REG1 uint8_t i; for (i = 0, tPtr = timers; i < max; i++, tPtr++) @@ -291,7 +270,7 @@ U8 max; /* maximum tmrs */ tPtr->prev = (struct cmTimer *)NULLP; tPtr->ent2bUpd = FALSE; } - RETVOID; + return; } /* end of cmInitTimers */ /* @@ -300,7 +279,7 @@ U8 max; /* maximum tmrs */ * * Desc: Places Control Block on Timing Queue * -* Ret: RETVOID +* Ret: void * * Notes: None * @@ -308,28 +287,20 @@ U8 max; /* maximum tmrs */ * */ -#ifdef ANSI -Void cmPlcCbTq -( -CmTmrArg *arg -) -#else -Void cmPlcCbTq(arg) -CmTmrArg *arg; -#endif +Void cmPlcCbTq(CmTmrArg *arg) { /*added FAP modifications*/ #ifdef SS_FAP - REG1 U8 tmrNum; + REG1 uint8_t tmrNum; /* cm_bdy5_c_001.main_20 - Modification for SRegCfgTmr support */ - U32 ent; - U32 expire; + uint32_t ent; + uint32_t expire; CmTimer **tmp; expire = (arg->tqCp->nxtEnt + arg->wait); /* cm_bdy5_c_002.113 - Modification for SRegCfgTmr support */ - ent = (U32)(expire % (U32)(arg->tqCp->tmrLen)); + ent = (uint32_t)(expire % (uint32_t)(arg->tqCp->tmrLen)); for (tmrNum = 0; tmrNum < arg->max; tmrNum++) { @@ -345,19 +316,19 @@ CmTmrArg *arg; tmp = &((*tmp)->next); *tmp = &arg->timers[tmrNum]; - RETVOID; + return; } } - RETVOID; + return; #else - REG1 U8 tmrNum; - U32 ent; + REG1 uint8_t tmrNum; + uint32_t ent; CmTqType *tq; CmTimer *target; - U32 expire; + uint32_t expire; expire = (arg->tqCp->nxtEnt + arg->wait); - ent = (U32)(expire % (U32)(arg->tqCp->tmrLen)); + ent = (uint32_t)(expire % (uint32_t)(arg->tqCp->tmrLen)); for (tmrNum = 0; tmrNum < arg->max; tmrNum++) { @@ -375,10 +346,10 @@ CmTmrArg *arg; /* Place the timer block in the timer list */ CM_PLC_TQCP(tq, target); - RETVOID; + return; } } - RETVOID; + return; #endif } /* end of cmPlcCbTq */ @@ -388,7 +359,7 @@ CmTmrArg *arg; * * Desc: Places Control Block on Timing Queue * -* Ret: RETVOID +* Ret: void * * Notes: None * @@ -396,21 +367,13 @@ CmTmrArg *arg; * */ -#ifdef ANSI -Void cmRstCbTq -( -CmTmrArg *arg -) -#else -Void cmRstCbTq(arg) -CmTmrArg *arg; -#endif +Void cmRstCbTq(CmTmrArg *arg) { arg->timers[arg->tNum].tqExpire = arg->tqCp->nxtEnt + arg->wait; arg->timers[arg->tNum].ent2bUpd = TRUE; - RETVOID; + return; } /* end of cmRstCbTq */ /* @@ -419,7 +382,7 @@ CmTmrArg *arg; * * Desc: Removes control block from Timing Queue * -* Ret: RETVOID +* Ret: void * * Notes: None * @@ -427,20 +390,12 @@ CmTmrArg *arg; * */ -#ifdef ANSI -Void cmRmvCbTq -( -CmTmrArg *arg -) -#else -Void cmRmvCbTq(arg) -CmTmrArg *arg; -#endif +Void cmRmvCbTq(CmTmrArg *arg) { /*Added FAP modifications*/ #ifdef SS_FAP /* cm_bdy5_c_002.113 - Modification for SRegCfgTmr support */ - U32 ent; + uint32_t ent; CmTimer *target; CmTimer *tmp1; CmTimer **tmp2; @@ -450,7 +405,7 @@ CmTmrArg *arg; if (target->tmrEvnt != TMR_NONE) { /* cm_bdy5_c_002.113 - Modification for SRegCfgTmr support */ - ent = (U32) (target->tqExpire % (U32)(arg->tqCp->tmrLen)); + ent = (uint32_t) (target->tqExpire % (uint32_t)(arg->tqCp->tmrLen)); tmp2 = &arg->tq[ent].first; while ((tmp1 = *tmp2) != NULLP) @@ -470,16 +425,16 @@ CmTmrArg *arg; tmp2 = &tmp1->next; } } - RETVOID; + return; #else - U32 ent; + uint32_t ent; CmTimer *target; CmTqType *tq; target = &arg->timers[arg->tNum]; if (target->tmrEvnt != TMR_NONE) { - ent = (U32) (target->entIdx); + ent = (uint32_t) (target->entIdx); tq = &arg->tq[ent]; /* @@ -496,7 +451,7 @@ CmTmrArg *arg; target->cb = NULLP; } - RETVOID; + return; #endif } /* end of cmRmvCbTq */