guarded_semaphore.h.svn-base
来自「德国Erlangen大学教学操作系统源码。」· SVN-BASE 代码 · 共 20 行
SVN-BASE
20 行
#ifndef __guarded_semaphore_h__#define __guarded_semaphore_h__#include "meeting/semaphore.h"class Guarded_Semaphore : public Semaphore{public: Guarded_Semaphore(); virtual ~Guarded_Semaphore(); Guarded_Semaphore(int c); void p(); void v(); void wait(); void signal();};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?