ProcUnit::WaitForNoPassing
Sets wait for no passing
Parameters
None.
Return Value
Returns 0 when the wait for no passing is successfully set.
Otherwise returns a non-zero value.
Description
If this method is executed in the measurement processing or the measurement result output processing of the processing item, the processing will stand by in this method until the measurement processing that is preceded in another CPU core is finished.
This method will finish without processing, except for one line high-speed mode.
The lower performance of measurement will be caused when the method is executed in a needless part (Because it waits until the measurement processing in the other CPU core ends if this is executed), please make sure that it is examined enough when you use it.
Example
int Sample::MeasureProc(ProcUnit *ptrProcUnit)
{
// Sets wait for no passing
ptrProcUnit->WaitForNoPassing();
}