X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=history.h;h=4795eb53e4cae374027cccf6592eb68549dbc0f4;hp=f8d866367c7e7e573067a0014f160e49b502a00f;hb=c0c4fcf47d8209da26e686b308d8c20ffc8220d3;hpb=bf2121ac2a964022f09c30ebb904bef7ceb2df8d diff --git a/history.h b/history.h index f8d86636..4795eb53 100644 --- a/history.h +++ b/history.h @@ -28,7 +28,7 @@ public: FuncNode * get_curr_func_node(thread_id_t tid); void update_write_history(void * location, uint64_t write_val); - HashTable * getWriteHistory() { return write_history; } + HashTable * getWriteHistory() { return write_history; } void update_loc_rd_func_nodes_map(void * location, FuncNode * node); void update_loc_wr_func_nodes_map(void * location, FuncNode * node); SnapVector * getRdFuncNodes(void * location); @@ -64,7 +64,7 @@ private: ModelVector func_nodes; /* Map a location to a set of values that have been written to it */ - HashTable * write_history; + HashTable * write_history; /* Map a location to FuncNodes that may read from it */ HashTable *, uintptr_t, 0> * loc_rd_func_nodes_map;