# HG changeset patch # User Tatsuki IHA # Date 1460306722 -32400 # Node ID 67f68f9c04b67288fe99bb3b89defe2de80e41a5 # Parent 870453d5b096eeee4f937765eef1af7ac492cf75# Parent 828ab677c8efb901724fc153e1e66977e7840c6a merge diff -r 870453d5b096 -r 67f68f9c04b6 src/parallel_execution/CMakeLists.txt --- a/src/parallel_execution/CMakeLists.txt Tue Mar 15 11:57:46 2016 +0900 +++ b/src/parallel_execution/CMakeLists.txt Mon Apr 11 01:45:22 2016 +0900 @@ -3,7 +3,7 @@ # -DUSE_CUDA add_definitions("-Wall -g -O0") -set(CMAKE_C_COMPILER cbclang) +set(CMAKE_C_COMPILER clang) add_executable(twice main.c diff -r 870453d5b096 -r 67f68f9c04b6 src/parallel_execution/context.h --- a/src/parallel_execution/context.h Tue Mar 15 11:57:46 2016 +0900 +++ b/src/parallel_execution/context.h Mon Apr 11 01:45:22 2016 +0900 @@ -128,6 +128,8 @@ struct Task { enum Code code; int key; + struct Queue* wait_me; + struct Queue* wait_i; } task; struct Queue { struct Element* first;