summaryrefslogtreecommitdiff
path: root/memory_replay/Thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'memory_replay/Thread.cpp')
-rw-r--r--memory_replay/Thread.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/memory_replay/Thread.cpp b/memory_replay/Thread.cpp
index 4f0a6d54..497b288e 100644
--- a/memory_replay/Thread.cpp
+++ b/memory_replay/Thread.cpp
@@ -16,6 +16,7 @@
#include <pthread.h>
+#include "Action.h"
#include "Thread.h"
Thread::Thread() {
@@ -55,3 +56,7 @@ void Thread::ClearPending() {
pthread_mutex_unlock(&mutex_);
pthread_cond_signal(&cond_);
}
+
+Action* Thread::CreateAction(uintptr_t key_pointer, const char* type, const char* line) {
+ return Action::CreateAction(key_pointer, type, line, action_memory_);
+}