@@ -1613,7 +1613,7 @@ void MicroProfileStringsDestroy(MicroProfileStrings* pStrings);
16131613
16141614MicroProfileToken MicroProfileCounterTokenInit (int nParent);
16151615void MicroProfileCounterTokenInitName (MicroProfileToken nToken, const char * pName);
1616- void MicroProfileCounterConfigInternal (MicroProfileToken, uint32_t eFormat, int64_t nLimit, uint32_t nFlags);
1616+ void MicroProfileCounterConfigToken (MicroProfileToken, uint32_t eFormat, int64_t nLimit, uint32_t nFlags);
16171617uint16_t MicroProfileFindGroup (const char * pGroup);
16181618
16191619inline std::recursive_mutex& MicroProfileMutex ()
@@ -1768,7 +1768,7 @@ void MicroProfileInit()
17681768#if MICROPROFILE_FRAME_EXTRA_DATA
17691769 S.FrameExtraCounterData = (MicroProfileFrameExtraCounterData*)1 ;
17701770#endif
1771- MicroProfileCounterConfigInternal (S.CounterToken_Alloc_Memory , MICROPROFILE_COUNTER_FORMAT_BYTES, 0 , MICROPROFILE_COUNTER_FLAG_DETAILED);
1771+ MicroProfileCounterConfigToken (S.CounterToken_Alloc_Memory , MICROPROFILE_COUNTER_FORMAT_BYTES, 0 , MICROPROFILE_COUNTER_FLAG_DETAILED);
17721772 MICROPROFILE_COUNTER_CONFIG (" MicroProfile/ThreadLog/Memory" , MICROPROFILE_COUNTER_FORMAT_BYTES, 0 , MICROPROFILE_COUNTER_FLAG_DETAILED);
17731773
17741774 if (bUseLock)
@@ -3090,7 +3090,7 @@ void MicroProfileCounterSetLimit(MicroProfileToken nToken, int64_t nCount)
30903090 S.CounterInfo [nToken].nLimit = nCount;
30913091}
30923092
3093- void MicroProfileCounterConfigInternal (MicroProfileToken nToken, uint32_t eFormat, int64_t nLimit, uint32_t nFlags)
3093+ void MicroProfileCounterConfigToken (MicroProfileToken nToken, uint32_t eFormat, int64_t nLimit, uint32_t nFlags)
30943094{
30953095 S.CounterInfo [nToken].eFormat = (MicroProfileCounterFormat)eFormat;
30963096 S.CounterInfo [nToken].nLimit = nLimit;
@@ -3100,7 +3100,7 @@ void MicroProfileCounterConfigInternal(MicroProfileToken nToken, uint32_t eForma
31003100void MicroProfileCounterConfig (const char * pName, uint32_t eFormat, int64_t nLimit, uint32_t nFlags)
31013101{
31023102 MicroProfileToken nToken = MicroProfileGetCounterToken (pName, 0 );
3103- MicroProfileCounterConfigInternal (nToken, eFormat, nLimit, nFlags);
3103+ MicroProfileCounterConfigToken (nToken, eFormat, nLimit, nFlags);
31043104}
31053105
31063106void MicroProfileCounterSetPtr (const char * pCounterName, void * pSource, uint32_t nSize)
0 commit comments