EGTP receiver thread creation
[o-du/l2.git] / src / cm / common_def.h
index 0bd7491..5f18a97 100644 (file)
    _bitPos = __builtin_ctz(_in);                 \
 }
 
+typedef enum
+{
+   UE_CFG_INACTIVE,
+   UE_CREATE_COMPLETE,
+   UE_RECFG_COMPLETE
+}UeCfgState;
+
+typedef enum
+{
+   CONFIG_UNKNOWN,
+   CONFIG_ADD,
+   CONFIG_MOD,
+   CONFIG_DEL
+}ConfigType;
+
 typedef struct slotIndInfo
 {
    uint16_t cellId;
@@ -172,20 +187,12 @@ typedef struct PlmnIdentity
    uint8_t mnc[3];
 }Plmn;
 
-typedef enum
+typedef struct oduCellId
 {
-   UE_CFG_INACTIVE,
-   UE_CREATE_COMPLETE,
-   UE_RECFG_COMPLETE
-}UeCfgState;
+   uint16_t cellId;
+}OduCellId;
 
-typedef enum
-{
-   CONFIG_UNKNOWN,
-   CONFIG_ADD,
-   CONFIG_MOD,
-   CONFIG_DEL
-}ConfigType;
+uint64_t gSlotCount;
 
 void freqDomRscAllocType0(uint16_t startPrb, uint16_t prbSize, uint8_t *freqDomain);
 void oduCpyFixBufToMsg(uint8_t *fixBuf, Buffer *mBuf, uint16_t len);