Home | History | Annotate | Download | only in memory_replay

Lines Matching refs:Action

29 #include "Action.h"
94 // when creating the Action object.
109 // the next action.
112 Action* action = thread->CreateAction(key_pointer, type, line + line_pos);
113 if (action == nullptr) {
114 err(1, "Cannot create action from line: %s\n", line);
117 bool does_free = action->DoesFree();
120 // before triggering the action. Otherwise, another thread could
125 // Tell the thread to execute the action.
128 if (action->EndThread()) {
133 // Wait for this action to complete. This avoids a race where