X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcm%2Frgm.c;h=9857653176205cbcd1a5b2fa5e7ed56ee0d8aea9;hb=ca0353e5cb5699aecb6840efe9572934a1150e2b;hp=96d81f1202b0e37a9c96b088153e16e536c8e5be;hpb=5d74fef7c9fe6b65a965ceac6bfe812872dab323;p=o-du%2Fl2.git diff --git a/src/cm/rgm.c b/src/cm/rgm.c index 96d81f120..985765317 100755 --- a/src/cm/rgm.c +++ b/src/cm/rgm.c @@ -57,19 +57,12 @@ * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkLwLcRgmBndReq ( Pst* pst, SuId suId, SpId spId ) -#else -S16 cmPkLwLcRgmBndReq(pst, suId, spId) -Pst* pst; -SuId suId; -SpId spId; -#endif { Buffer *mBuf = NULLP; @@ -108,19 +101,12 @@ SpId spId; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkLwLcRgmBndReq ( RgmBndReq func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkLwLcRgmBndReq(func, pst, mBuf) -RgmBndReq func; -Pst *pst; -Buffer *mBuf; -#endif { SuId suId; SpId spId; @@ -159,19 +145,12 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkLwLcRgmUbndReq ( Pst* pst, SpId spId, Reason reason ) -#else -S16 cmPkLwLcRgmUbndReq(pst, spId, reason) -Pst* pst; -SpId spId; -Reason reason; -#endif { Buffer *mBuf = NULLP; @@ -204,23 +183,16 @@ Reason reason; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkLwLcRgmBndCfm ( Pst* pst, SuId suId, -U8 status +uint8_t status ) -#else -S16 cmPkLwLcRgmBndCfm(pst, suId, status) -Pst* pst; -SuId suId; -U8 status; -#endif { Buffer *mBuf = NULLP; @@ -256,26 +228,19 @@ U8 status; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkLwLcRgmBndCfm ( RgmBndCfm func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkLwLcRgmBndCfm(func, pst, mBuf) -RgmBndCfm func; -Pst *pst; -Buffer *mBuf; -#endif { SuId suId; - U8 status; + uint8_t status; if (oduPackUInt8(&status, mBuf) != ROK) @@ -307,39 +272,32 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkLwLcRgmCfgPrbRprt ( Pst* pst, SpId spId, RgmPrbRprtCfg * prbRprtCfg ) -#else -S16 cmPkLwLcRgmCfgPrbRprt(pst, spId, prbRprtCfg) -Pst* pst; -SpId spId; -RgmPrbRprtCfg * prbRprtCfg; -#endif { Buffer *mBuf = NULLP; - U32 len = sizeof(RgmPrbRprtCfg); + uint32_t len = sizeof(RgmPrbRprtCfg); if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); return RFAILED; } if(oduPackPointer((PTR)prbRprtCfg, mBuf) != ROK) { SPutMsg(mBuf); - SPutSBuf(pst->region, pst->pool, (Data*)prbRprtCfg, len); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data*)prbRprtCfg, len); return RFAILED; } if (SPkS16(spId, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); SPutMsg(mBuf); return RFAILED; } @@ -362,19 +320,12 @@ RgmPrbRprtCfg * prbRprtCfg; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkLwLcRgmCfgPrbRprt ( RgmCfgPrbRprtFptr func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkLwLcRgmCfgPrbRprt(func, pst, mBuf) -RgmCfgPrbRprtFptr func; -Pst *pst; -Buffer *mBuf; -#endif { S16 ret; SpId spId; @@ -390,7 +341,7 @@ Buffer *mBuf; if (oduUnpackPointer((PTR *)&prbRprtCfg, mBuf) != ROK) { SPutMsg(mBuf); - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); return RFAILED; } @@ -414,38 +365,31 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkLwLcRgmPrbRprtInd ( Pst* pst, SuId suId, RgmPrbRprtInd * prbRprtInd ) -#else -S16 cmPkLwLcRgmPrbRprtInd(pst, suId, prbRprtInd) -Pst* pst; -SuId suId; -RgmPrbRprtInd * prbRprtInd; -#endif { Buffer *mBuf = NULLP; if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); return RFAILED; } if(oduPackPointer((PTR)prbRprtInd, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); SPutMsg(mBuf); return RFAILED; } if (SPkS16(suId, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); SPutMsg(mBuf); return RFAILED; } @@ -468,19 +412,12 @@ RgmPrbRprtInd * prbRprtInd; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkLwLcRgmPrbRprtInd ( RgmPrbRprtIndFptr func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkLwLcRgmPrbRprtInd(func, pst, mBuf) -RgmPrbRprtIndFptr func; -Pst *pst; -Buffer *mBuf; -#endif { SuId suId; RgmPrbRprtInd *prbRprtInd; @@ -496,7 +433,7 @@ Buffer *mBuf; if (oduUnpackPointer((PTR *)&prbRprtInd, mBuf) != ROK) { SPutMsg(mBuf); - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); return RFAILED; } @@ -523,19 +460,12 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkRgmBndReq ( Pst* pst, SuId suId, SpId spId ) -#else -S16 cmPkRgmBndReq(pst, suId, spId) -Pst* pst; -SuId suId; -SpId spId; -#endif { Buffer *mBuf = NULLP; @@ -574,19 +504,12 @@ SpId spId; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkRgmBndReq ( RgmBndReq func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkRgmBndReq(func, pst, mBuf) -RgmBndReq func; -Pst *pst; -Buffer *mBuf; -#endif { SuId suId; SpId spId; @@ -625,19 +548,12 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkRgmUbndReq ( Pst* pst, SpId spId, Reason reason ) -#else -S16 cmPkRgmUbndReq(pst, spId, reason) -Pst* pst; -SpId spId; -Reason reason; -#endif { Buffer *mBuf = NULLP; @@ -675,19 +591,12 @@ Reason reason; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkRgmUbndReq ( RgmUbndReq func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkRgmUbndReq(func, pst, mBuf) -RgmUbndReq func; -Pst *pst; -Buffer *mBuf; -#endif { SpId spId; Reason reason; @@ -718,23 +627,16 @@ Buffer *mBuf; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkRgmBndCfm ( Pst* pst, SuId suId, -U8 status +uint8_t status ) -#else -S16 cmPkRgmBndCfm(pst, suId, status) -Pst* pst; -SuId suId; -U8 status; -#endif { Buffer *mBuf = NULLP; @@ -770,26 +672,19 @@ U8 status; * * @param[in] Pst* pst * @param[in] SuId suId -* @param[in] U8 status +* @param[in] uint8_t status * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkRgmBndCfm ( RgmBndCfm func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkRgmBndCfm(func, pst, mBuf) -RgmBndCfm func; -Pst *pst; -Buffer *mBuf; -#endif { SuId suId; - U8 status; + uint8_t status; if (oduPackUInt8(&status, mBuf) != ROK) @@ -822,17 +717,11 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkCfgPrbRprt ( RgmPrbRprtCfg * prbRprtCfg, Buffer *mBuf ) -#else -S16 cmPkCfgPrbRprt(prbRprtCfg, mBuf) -RgmPrbRprtCfg * prbRprtCfg; -Buffer *mBuf; -#endif { CMCHKPK(oduUnpackUInt16, prbRprtCfg->usPrbAvgPeriodicty, mBuf); CMCHKPK(oduUnpackUInt8, prbRprtCfg->bConfigType, mBuf); @@ -851,17 +740,11 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnPkCfgPrbRprt ( RgmPrbRprtCfg * prbRprtCfg, Buffer *mBuf ) -#else -S16 cmUnPkCfgPrbRprt(prbRprtCfg, mBuf) -RgmPrbRprtCfg * prbRprtCfg; -Buffer *mBuf; -#endif { CMCHKUNPK(oduPackUInt8, &prbRprtCfg->bCellId, mBuf); CMCHKUNPK(oduPackUInt8, &prbRprtCfg->bConfigType, mBuf); @@ -885,44 +768,37 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkRgmCfgPrbRprt ( Pst* pst, SpId spId, RgmPrbRprtCfg * prbRprtCfg ) -#else -S16 cmPkRgmCfgPrbRprt(pst, spId, prbRprtCfg) -Pst* pst; -SpId spId; -RgmPrbRprtCfg * prbRprtCfg; -#endif { Buffer *mBuf = NULLP; - U32 len = sizeof(RgmPrbRprtCfg); + uint32_t len = sizeof(RgmPrbRprtCfg); if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); return RFAILED; } if(cmPkCfgPrbRprt(prbRprtCfg, mBuf) != ROK) { SPutMsg(mBuf); - SPutSBuf(pst->region, pst->pool, (Data*)prbRprtCfg, len); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data*)prbRprtCfg, len); return RFAILED; } if (SPkS16(spId, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); SPutMsg(mBuf); return RFAILED; } - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtCfg, sizeof(RgmPrbRprtCfg)); pst->event = (Event) EVTRGMCFGPRBRPRT; return (SPstTsk(pst,mBuf)); @@ -943,24 +819,17 @@ RgmPrbRprtCfg * prbRprtCfg; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkRgmCfgPrbRprt ( RgmCfgPrbRprtFptr func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkRgmCfgPrbRprt(func, pst, mBuf) -RgmCfgPrbRprtFptr func; -Pst *pst; -Buffer *mBuf; -#endif { SpId spId; RgmPrbRprtCfg *prbRprtCfg; - if ((SGetSBuf(pst->region, pst->pool, (Data **)&prbRprtCfg, sizeof(RgmPrbRprtCfg))) != ROK) + if ((SGetSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data **)&prbRprtCfg, sizeof(RgmPrbRprtCfg))) != ROK) { SPutMsg(mBuf); return RFAILED; @@ -996,17 +865,11 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkRgmPrbQciRpt ( - RgmPrbRptPerQci *qciPrbRprt, - Buffer *mBuf - ) -#else -S16 cmPkRgmPrbQciRpt(qciPrbRprt, mBuf) -RgmPrbRptPerQci *qciPrbRprt; -Buffer *mBuf = NULLP; -#endif +RgmPrbRptPerQci *qciPrbRprt, +Buffer *mBuf +) { CMCHKPK(oduUnpackUInt8, qciPrbRprt->bQci, mBuf); CMCHKPK(oduUnpackUInt8, qciPrbRprt->bAvgPrbUlUsage, mBuf); @@ -1027,17 +890,11 @@ Buffer *mBuf = NULLP; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkRgmPrbQciRpt ( - RgmPrbRptPerQci *qciPrbRprt, - Buffer *mBuf - ) -#else -S16 cmUnpkRgmPrbQciRpt(qciPrbRprt, mBuf) -RgmPrbRptPerQci *qciPrbRprt; -Buffer *mBuf = NULLP; -#endif +RgmPrbRptPerQci *qciPrbRprt, +Buffer *mBuf +) { CMCHKUNPK(oduPackUInt8, &qciPrbRprt->bAvgPrbDlUsage, mBuf); CMCHKUNPK(oduPackUInt8, &qciPrbRprt->bAvgPrbUlUsage, mBuf); @@ -1059,17 +916,11 @@ Buffer *mBuf = NULLP; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkPrbRprtInd ( - RgmPrbRprtInd * prbRprtInd, - Buffer *mBuf - ) -#else -S16 cmPkPrbRprtInd(prbRprtInd, mBuf) - RgmPrbRprtInd * prbRprtInd; - Buffer *mBuf = NULLP; -#endif +RgmPrbRprtInd * prbRprtInd, +Buffer *mBuf +) { S32 idx = 0; @@ -1097,19 +948,13 @@ S16 cmPkPrbRprtInd(prbRprtInd, mBuf) * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkPrbRprtInd ( - RgmPrbRprtInd * prbRprtInd, - Buffer *mBuf - ) -#else -S16 cmUnpkPrbRprtInd(prbRprtInd, mBuf) - RgmPrbRprtInd * prbRprtInd; - Buffer *mBuf; -#endif +RgmPrbRprtInd * prbRprtInd, +Buffer *mBuf +) { - U32 idx = 0; + uint32_t idx = 0; /* RRM_SP1_START */ @@ -1139,43 +984,36 @@ S16 cmUnpkPrbRprtInd(prbRprtInd, mBuf) * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkRgmPrbRprtInd ( Pst* pst, SuId suId, RgmPrbRprtInd * prbRprtInd ) -#else -S16 cmPkRgmPrbRprtInd(pst, suId, prbRprtInd) -Pst* pst; -SuId suId; -RgmPrbRprtInd * prbRprtInd; -#endif { Buffer *mBuf = NULLP; if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); return RFAILED; } if(cmPkPrbRprtInd(prbRprtInd, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); SPutMsg(mBuf); return RFAILED; } if (SPkS16(suId, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); SPutMsg(mBuf); return RFAILED; } - SPutSBuf(pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)prbRprtInd, sizeof(RgmPrbRprtInd)); pst->event = (Event) EVTRGMPRBRPRTIND; return (SPstTsk(pst,mBuf)); @@ -1193,19 +1031,12 @@ RgmPrbRprtInd * prbRprtInd; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkRgmPrbRprtInd ( RgmPrbRprtIndFptr func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkRgmPrbRprtInd(func, pst, mBuf) -RgmPrbRprtIndFptr func; -Pst *pst; -Buffer *mBuf; -#endif { SuId suId; RgmPrbRprtInd prbRprtInd; @@ -1239,17 +1070,11 @@ Buffer *mBuf; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmPkTransModeInd ( - RgmTransModeInd *transModeInd, - Buffer *mBuf - ) -#else -S16 cmPkTransModeInd(transModeInd, mBuf) - RgmTransModeInd *transModeInd; - Buffer *mBuf; -#endif +RgmTransModeInd *transModeInd, +Buffer *mBuf +) { CMCHKPK(oduUnpackUInt32, transModeInd->eMode, mBuf); CMCHKPK(oduUnpackUInt16, transModeInd->usCrnti, mBuf); @@ -1269,22 +1094,16 @@ S16 cmPkTransModeInd(transModeInd, mBuf) * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkTransModeInd ( - RgmTransModeInd *transModeInd, - Buffer *mBuf - ) -#else -S16 cmUnpkTransModeInd(transModeInd, mBuf) - RgmTransModeInd *transModeInd; - Buffer *mBuf; -#endif +RgmTransModeInd *transModeInd, +Buffer *mBuf +) { - U32 tmpModeEnum; + uint32_t tmpModeEnum; CMCHKUNPK(oduPackUInt8, &transModeInd->bCellId, mBuf); CMCHKUNPK(oduPackUInt16, &transModeInd->usCrnti, mBuf); - CMCHKUNPK(oduPackUInt32, (U32 *)&tmpModeEnum, mBuf); + CMCHKUNPK(oduPackUInt32, (uint32_t *)&tmpModeEnum, mBuf); transModeInd->eMode = (RgmTxnMode)tmpModeEnum; return ROK; } @@ -1301,43 +1120,37 @@ S16 cmUnpkTransModeInd(transModeInd, mBuf) * @return S16 * -# ROK **/ -#ifdef ANSI + S16 cmPkRgmTransModeInd ( Pst* pst, SuId suId, RgmTransModeInd *transModeInd ) -#else -S16 cmPkRgmTransModeInd(pst, suId, transModeInd) -Pst* pst; -SuId suId; -RgmTransModeInd *transModeInd; -#endif { Buffer *mBuf = NULLP; if (SGetMsg(pst->region, pst->pool, &mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); return RFAILED; } if(cmPkTransModeInd(transModeInd, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); SPutMsg(mBuf); return RFAILED; } if (SPkS16(suId, mBuf) != ROK) { - SPutSBuf(pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); SPutMsg(mBuf); return RFAILED; } - SPutSBuf(pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); + SPutSBufNewForDebug(__FILE__,__FUNCTION__,__LINE__,pst->region, pst->pool, (Data *)transModeInd, sizeof(RgmTransModeInd)); pst->event = (Event) EVTRGMTRANSMODEIND; return (SPstTsk(pst,mBuf)); @@ -1355,19 +1168,12 @@ RgmTransModeInd *transModeInd; * @return S16 * -# ROK **/ -#ifdef ANSI S16 cmUnpkRgmTransModeInd ( RgmTransModeIndFptr func, Pst *pst, Buffer *mBuf ) -#else -S16 cmUnpkRgmTransModeInd(func, pst, mBuf) -RgmTransModeIndFptr func; -Pst *pst; -Buffer *mBuf; -#endif { SuId suId; RgmTransModeInd transModeInd;