-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmutex.cc
More file actions
34 lines (27 loc) · 697 Bytes
/
Copy pathmutex.cc
File metadata and controls
34 lines (27 loc) · 697 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
34
#include <mutex>
#include "model.h"
#include "execution.h"
#include "threads-model.h"
#include "clockvector.h"
#include "action.h"
namespace std {
mutex::mutex()
{
state.locked = NULL;
thread_id_t tid = thread_current()->get_id();
state.alloc_tid = tid;
state.alloc_clock = model->get_execution()->get_cv(tid)->getClock(tid);
}
void mutex::lock()
{
model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this));
}
bool mutex::try_lock()
{
return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this));
}
void mutex::unlock()
{
model->switch_to_master(new ModelAction(ATOMIC_UNLOCK, std::memory_order_seq_cst, this));
}
}