guarded_buzzer.cc.svn-base

来自「德国Erlangen大学教学操作系统源码。」· SVN-BASE 代码 · 共 32 行

SVN-BASE
32
字号

#include "guard/secure.h"
#include "syscall/guarded_buzzer.h"

Guarded_Buzzer::Guarded_Buzzer()
{
}

Guarded_Buzzer::~Guarded_Buzzer()
{
}
/**virtual Guarded_Buzzer::~Buzzer()
{
	Secure s;
	Buzzer::~Buzzer();
}*/

void Guarded_Buzzer::set(int ms)
{
	Secure s;
	Buzzer::set(ms);
}

void Guarded_Buzzer::sleep()
{
	Secure s;
	Buzzer::sleep();	
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?