/******************************************************************************* ################################################################################ # Copyright (c) [2017-2019] [Radisys] # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # # You may obtain a copy of the License at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # # See the License for the specific language governing permissions and # # limitations under the License. # ################################################################################ *******************************************************************************/ typedef struct schFcfsCellCb { CmLListCp ueToBeScheduled; /*!< Linked list to store UEs pending to be scheduled, */ }SchFcfsCellCb; typedef struct schFcfsLcCb { /* TODO: For Multiple RRMPolicies, Make DedicatedLcInfo as array/Double Pointer * and have separate DedLCInfo for each RRMPolcyMemberList*/ /* Dedicated LC List will be allocated, if any available*/ CmLListCp dedLcList; /*Contain LCInfo per RRMPolicy*/ CmLListCp defLcList; /*Linklist of LC assoc with Default S-NSSAI(s)*/ /* SharedPRB number can be used by any LC. * Need to calculate in every Slot based on PRB availability*/ uint16_t sharedNumPrb; }SchFcfsLcCb; typedef struct schFcfsHqProcCb { SchFcfsLcCb lcCb; }SchFcfsHqProcCb; typedef struct schFcfsHqCb { CmLListCp ulRetxHqList; CmLListCp dlRetxHqList; }SchFcfsHqCb; typedef struct schFcfsUeCb { SchFcfsHqCb hqRetxCb; }SchFcfsUeCb; uint8_t schFcfsAddUeToSchedule(SchCellCb *cellCb, uint16_t ueIdToAdd); void schFcfsAllApisInit(SchAllApis *allFcfsApi); /********************************************************************** End of file *********************************************************************/