-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathclockvector.h
More file actions
33 lines (25 loc) · 717 Bytes
/
clockvector.h
File metadata and controls
33 lines (25 loc) · 717 Bytes
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
/** @file clockvector.h
* @brief Implements a clock vector.
*/
#ifndef __CLOCKVECTOR_H__
#define __CLOCKVECTOR_H__
#include "mymemory.h"
#include "modeltypes.h"
/* Forward declaration */
class ModelAction;
class ClockVector {
public:
ClockVector(ClockVector *parent = NULL, ModelAction *act = NULL);
~ClockVector();
bool merge(const ClockVector *cv);
bool synchronized_since(const ModelAction *act) const;
void print() const;
modelclock_t getClock(thread_id_t thread);
SNAPSHOTALLOC
private:
/** @brief Holds the actual clock data, as an array. */
modelclock_t *clock;
/** @brief The number of threads recorded in clock (i.e., its length). */
int num_threads;
};
#endif /* __CLOCKVECTOR_H__ */