📄 mutex.cc
字号:
/* $Id: Mutex.cc,v 1.1.1.1 2000/09/24 11:39:10 pure Exp $ */#include "Mutex.h"Mutex::Mutex(){ if (pthread_mutex_init(&mutex, NULL)) throw;} Mutex::~Mutex(){ pthread_mutex_destroy(&mutex);}void Mutex::lock(){ pthread_mutex_lock(&mutex);} void Mutex::unlock(){ pthread_mutex_unlock(&mutex);} bool Mutex::trylock(){ return !pthread_mutex_trylock(&mutex);} Mutex::operator pthread_mutex_t* (){ return &mutex;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -