countingsemaphore.h
来自「Generic template class library for messa」· C头文件 代码 · 共 27 行
H
27 行
#ifndef __COUNTINGSEMAPHORE_H__#define __COUNTINGSEMAPHORE_H__#include <semaphore.h>class CountingSemaphore{ public: CountingSemaphore( unsigned long value = 0 ); virtual ~CountingSemaphore(); void post(); void wait(); bool trywait(); private: sem_t posixSemaphore;};#endif /* __COUNTINGSEMAPHORE_H__ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?