ProcUnit::MeasureEnd

Performs processing at the end of measurement

int MeasureEnd(
)

Parameters
None.

Return Value
Returns 0 when the measurement end processing succeeded.
Otherwise returns a non-zero value.

Description
Performs the measurement end processing of a processing item.

Example
    int Sample::MeasureEnd(ProcUnit *ptrProcUnit)
    {

        // Get the pointer to the inner processing unit

        ProcUnit *ptrInnerUnit = ptrProcUnit->GetInnerUnit(0);

        // Perform the measurement end processing of an inner processing unit

        ptrInnerUnit->MeasureEnd();
    }