-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcpu.h
More file actions
97 lines (72 loc) · 1.82 KB
/
cpu.h
File metadata and controls
97 lines (72 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/*******************************************************************
*
* DESCRIPTION: class CPU (processes jobs with a specified
* distribution)
*
* AUTHOR: Amir Barylko & Jorge Beyoglonian
* v2: Alejandro Troccoli
*
* EMAIL: mailto://amir@dc.uba.ar
* mailto://jbeyoglo@dc.uba.ar
* mailto://atroccol@dc.uba.ar
*
* DATE: 27/6/1998
* DATE: 01/02/2001
*
*******************************************************************/
#ifndef __CPU_H
#define __CPU_H
/** include files **/
#include "atomic.h" // class Atomic
#include "atomicstate.h"
/** forward declarations **/
class Distribution ;
class CPUState : public AtomicState {
public:
//Process id
int pid;
CPUState(){};
virtual ~CPUState(){};
CPUState& operator=(CPUState& thisState); //Assignment
void copyState(CPUState *);
int getSize() const;
};
/** declarations **/
class CPU: public Atomic
{
public:
CPU( const std::string &name = "CPU" ) ; // Default constructor
~CPU(); // Destructor
virtual std::string className() const
{return "CPU";}
protected:
Model &initFunction()
{return *this;}
Model &externalFunction( const ExternalMessage & );
Model &internalFunction( const InternalMessage & );
Model &outputFunction( const CollectMessage & );
ModelState* allocateState() {
return new CPUState;
}
private:
const Port &in ;
Port &out ;
Distribution *dist ;
//Shortcuts to cpu's state
int pid() const;
void pid( int );
Distribution &distribution()
{return *dist;}
}; // class CPU
/*******************************************************************
* Shortcuts to state paramters
*********************************************************************/
inline
int CPU::pid() const {
return ((CPUState*)getCurrentState())->pid;
}
inline
void CPU::pid( int p) {
((CPUState*)getCurrentState())->pid = p;
}
#endif //__CPU_H