auto_critical_section.h | 43 explicit AutoCriticalSection(CRITICAL_SECTION* cs) : cs_(cs), taken_(false) { 50 if (taken_) { 57 assert(!taken_); 59 taken_ = true; 65 assert(taken_); 66 taken_ = false; 76 bool taken_; member in class:google_breakpad::AutoCriticalSection
|