Skip to content

Commit 7200171

Browse files
committed
Update to correctly include deque.
1 parent b09863a commit 7200171

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

C/Savina/src/concurrency/BoundedBuffer.lf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ import BenchmarkRunner from "../BenchmarkRunner.lf";
4747
preamble {=
4848
#include "PseudoRandom.h"
4949
#include <math.h>
50+
#include "deque.h"
5051

5152
double processItem(double curTerm, size_t cost) {
5253
double res = curTerm;

C/Savina/src/concurrency/SleepingBarber.lf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ target C {
5353
]]] */
5454
threading: false,
5555
/// [[[end]]]
56-
files: ["/lib/c/reactor-c/util/deque.h", "/lib/c/reactor-c/util/deque.c", "../include/PseudoRandom.h"]
56+
files: ["/lib/c/reactor-c/util/deque.h", "/lib/c/reactor-c/util/deque.c", "../include/PseudoRandom.h"],
57+
cmake-include: ["../include/deque.cmake"]
5758
};
5859

5960
import BenchmarkRunner from "../BenchmarkRunner.lf";

0 commit comments

Comments
 (0)