123456789
bool IsUsingMyFunc = false; void MyFunc() { while( IsUsingMyFunc ) Sleep(1); IsUsingMyFunc = true; /* stuff happening between */ IsUsingMyFunc = false; }