| 10042 | } |
| 10043 | |
| 10044 | Mutex::Mutex() |
| 10045 | : owner_thread_id_(0), |
| 10046 | type_(kDynamic), |
| 10047 | critical_section_init_phase_(0), |
| 10048 | critical_section_(new CRITICAL_SECTION) { |
| 10049 | ::InitializeCriticalSection(critical_section_); |
| 10050 | } |
| 10051 | |
| 10052 | Mutex::~Mutex() { |
| 10053 | // Static mutexes are leaked intentionally. It is not thread-safe to try |
nothing calls this directly
no outgoing calls
no test coverage detected