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