# HG changeset patch # User Nina Engelhardt # Date 1317214721 -7200 # Node ID fe3ff53b55a67c36cf9d24c323936abafc183052 # Parent 6b629059c7abdd47d10d40768798fc9c688835b9 initialization of unused fields in 1st VP task diff -r 6b629059c7ab -r fe3ff53b55a6 Counters/run_graph.py --- a/Counters/run_graph.py Thu Sep 15 18:54:18 2011 +0200 +++ b/Counters/run_graph.py Wed Sep 28 14:58:41 2011 +0200 @@ -70,5 +70,6 @@ for node in cr: dependencygraph.add_node_attribute(node,('color','red')) + dependencygraph.add_node_attribute(node,('style','bold')) print write(dependencygraph) diff -r 6b629059c7ab -r fe3ff53b55a6 ProcrContext.c --- a/ProcrContext.c Thu Sep 15 18:54:18 2011 +0200 +++ b/ProcrContext.c Wed Sep 28 14:58:41 2011 +0200 @@ -66,6 +66,10 @@ newRecord->task_position = 0; newRecord->vp_id = newPr->procrID; newRecord->addr_of_libcall_for_req = fnPtr; + newRecord->sc_done_cycles = 0; + newRecord->sc_done_instrs = 0; + newRecord->req_cycles = 0; + newRecord->req_instrs = 0; addToDynArray( (void*) newRecord, newPr->counter_history_array_info); #endif //========================================================================