X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcm%2Fcm_mblk.x;h=8918bc9a2ecddca92a31c341a9793ae2b9af69c2;hb=def50dc175cebc67238db5f1acd5ff322a2279bd;hp=ec460cf462a5a8b426de85ebf7470f52810c74f2;hpb=1616921700a3c7541f1df6dd2678f9ee4d8e933b;p=o-du%2Fl2.git diff --git a/src/cm/cm_mblk.x b/src/cm/cm_mblk.x index ec460cf46..8918bc9a2 100755 --- a/src/cm/cm_mblk.x +++ b/src/cm/cm_mblk.x @@ -44,7 +44,7 @@ typedef struct cmMemCb { Size maxSize; /* Size of memory chunk */ Mem sMem; /* Static memory region and pool */ - U32 memAllocated; /* amount of memory already allocated */ + uint32_t memAllocated; /* amount of memory already allocated */ PTR initPtr; /* Initial pointer */ PTR runPtr; /* Start of avaliable memory chunk */ } CmMemCb; @@ -70,7 +70,7 @@ typedef struct cmMemListCp { CmMemList *first; /* first entry in list */ CmMemList *last; /* last entry in list */ - U32 count; /* number of entries */ + uint32_t count; /* number of entries */ CmMemCb memCb; /* Memory Control Block */ }CmMemListCp; @@ -80,7 +80,7 @@ typedef struct cmMemListCp typedef struct cmMemStatus { Mem sMem; /* Static Memory region,pool */ - U32 memBlkCnt; /* Memory Blocks Count */ + uint32_t memBlkCnt; /* Memory Blocks Count */ Size maxBlkSize; /* Size of memory Block */ Size memAllocated; /* Memory allocated off chunk */ } CmMemStatus;