// locks a critical section, and unlocks it automatically
// when the lock goes out of scope
CAutoLock(CCritSec * plock)
The above is from wxutil.h
, does it lock the access of different process , or just locks different threads in the same process?