代码搜索结果
找到约 10,000 项符合
Monitor 的代码
monitor.ini
[HI-WAVE]
MainFrame=2,3,-1,-1,-1,-1,132,132,996,740
TOOLBAR=57600 57601 32795 0 57635 57634 57637 0 57671 57669 0 32777 32776 32782 32780 32781 32778 0 32806
Target=GDI
CPU=HC12
Configuration=Mon
monitor.h
class Monitor {
public:
char* name;
Task *heldBy;
List *waitingQ;
bool display;
~Monitor();
};
Monitor::~Monitor() {
delete[] name;
delete waitingQ;
}
class MonitorNode : public Node
monitor.h
/* $Id: Monitor.h,v 1.5 2000/10/01 11:56:40 pure Exp $ */
#ifndef __Monitor_h__
#define __Monitor_h__
#include "AVR_BDM.h"
#include "Server.h"
class Monitor : public AVR_BDM {
private:
Server& ser
monitor.cc
/* $Id: Monitor.cc,v 1.9 2000/10/01 17:00:42 pure Exp $ */
#include "Monitor.h"
#include
#include
#include
#include
Monitor::Monitor(Server& _server, unsig