Home
last modified time | relevance | path

Searched refs:stackIndex (Results 1 – 2 of 2) sorted by relevance

/percepio-latest/TraceRecorder/
DtrcISR.c37 pxCoreData->stackIndex = -1; in xTraceISRInitialize()
109 if (pxCoreData->stackIndex == -1) in xTraceISRBegin()
114 if (pxCoreData->stackIndex < ((TRC_CFG_MAX_ISR_NESTING) - 1)) in xTraceISRBegin()
116 pxCoreData->stackIndex++; in xTraceISRBegin()
117 pxCoreData->handleStack[pxCoreData->stackIndex] = xISRHandle; in xTraceISRBegin()
151 pxCoreData->stackIndex--; in xTraceISREnd()
157 if (pxCoreData->stackIndex >= 0) in xTraceISREnd()
160 …R_RESUME, (TraceUnsignedBaseType_t)pxCoreData->handleStack[pxCoreData->stackIndex]); /*cstat !MISR… in xTraceISREnd()
188 *puiValue = pxCoreData->stackIndex; in xTraceISRGetCurrentNesting()
198 return pxTraceISRData->cores[TRC_CFG_GET_CURRENT_CORE()].stackIndex; in xTraceISRGetCurrentNestingReturned()
[all …]
/percepio-latest/TraceRecorder/include/
DtrcISR.h38 int32_t stackIndex; /**< */ member
168 …ENT_EXPR_2(*(puiValue) = pxTraceISRData->cores[TRC_CFG_GET_CURRENT_CORE()].stackIndex, TRC_SUCCESS)
175 …xTraceISRGetCurrentNestingReturned() (pxTraceISRData->cores[TRC_CFG_GET_CURRENT_CORE()].stackIndex)