/*
* Rule: SIG02-C
* Source: wiki
* Status: PASS - Should NOT trigger SIG02-C violation
*/
/*
* Note that the CRITICAL_SECTION must be initialized with
* InitializeCriticalSection, and the CONDITION_VARIABLE must
* be initialized with InitializeConditionVariable prior to
* using them.
*/
CRITICAL_SECTION CritSection;
CONDITION_VARIABLE ConditionVar;
/* THREAD 1 */
int
/* THREAD 2 */
int