nn::nex::CriticalSection::Enter Member Function

Syntax

void Enter();

Parameters

None.

Return Values

None.

Description

Enters a critical section.

State changes are guaranteed not to occur during the span of calls to the Enter and Leave functions. The thread that calls this method has ownership of the critical section until the call to Leave. Any other thread that tries to enter the critical section will be blocked until the current thread has left the critical section.

See Also

ScopedCS::ScopedCS

Revision History

2011/01/27
Initial version.

CONFIDENTIAL