-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitor.h
64 lines (46 loc) · 1.55 KB
/
monitor.h
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
/*
<one line to give the library's name and an idea of what it does.>
Copyright (C) <year> <name of author>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef MONITOR_H
#define MONITOR_H
#define MAX_ITER 1
#include "app.h"
#include "tids.h"
#include <vector>
#include <list>
#include <pvm3.h>
using std::vector;
using std::list;
class Monitor : public App {
public:
Monitor(uint procNo, const JobList &jobList, const Tids &tids);
void run();
void resume(const HaltState &resumeState, list< Msg >& msgSaved);
private:
void runRemote();
void send(Instr instr, int arg, int objNo);
void sendState();
void receive();
bool isAllChanDone();
void recordState(int init);
const Tids &tids;
list<Msg> msgBuf;
vector<bool> recvMark;
list<Msg> chanState;
bool involved;
HaltState haltState;
int initializer;
};
#endif // MONITOR_H