# HG changeset patch # User Shinji KONO # Date 1481878599 -32400 # Node ID af4dec989aa139899ea50ac41b8a4d46beea4d09 # Parent 39d87ba6039de4960b61ccf8f9e9148782c92795 fixes diff -r 39d87ba6039d -r af4dec989aa1 src/parallel_execution/dependency.c --- a/src/parallel_execution/dependency.c Fri Dec 16 16:38:31 2016 +0900 +++ b/src/parallel_execution/dependency.c Fri Dec 16 17:56:39 2016 +0900 @@ -10,7 +10,7 @@ __code waitFor1(struct Context* context, struct Task* master, struct Task* slave, struct Element* element) { element->data = (union Data *)slave; // enqueue waitMe - goto meta_waitFor(context, /*master->waitMe*/ NULL , /*PutQueue1*/ waitFor1); + goto meta_waitFor(context, /*master->waitMe*/ NULL , /*PutQueue1*/ C_waitFor1); } __code waitFor1_stub(struct Context* context) { diff -r 39d87ba6039d -r af4dec989aa1 src/parallel_execution/twice.c --- a/src/parallel_execution/twice.c Fri Dec 16 16:38:31 2016 +0900 +++ b/src/parallel_execution/twice.c Fri Dec 16 17:56:39 2016 +0900 @@ -10,7 +10,7 @@ array[i+index*prefix] = array[i+index*prefix]*2; loopCounter->i++; - goto meta(context, twice); + goto meta(context, C_twice); } loopCounter->i = 0;