Index: benchmark/readyQ/rq_bench.hfa
===================================================================
--- benchmark/readyQ/rq_bench.hfa	(revision 43784ac7ca1579ca19d7dc8bc4e1423986fd4d97)
+++ benchmark/readyQ/rq_bench.hfa	(revision b7d94ac5737a4c841871096ccb6bf5567f53423c)
@@ -93,5 +93,5 @@
 
 struct __attribute__((aligned(128))) bench_sem {
-	struct $thread * volatile ptr;
+	struct thread$ * volatile ptr;
 };
 
@@ -105,5 +105,5 @@
 	bool wait(bench_sem & this) {
 		for() {
-			struct $thread * expected = this.ptr;
+			struct thread$ * expected = this.ptr;
 			if(expected == 1p) {
 				if(__atomic_compare_exchange_n(&this.ptr, &expected, 0p, false, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)) {
@@ -124,5 +124,5 @@
 	bool post(bench_sem & this) {
 		for() {
-			struct $thread * expected = this.ptr;
+			struct thread$ * expected = this.ptr;
 			if(expected == 1p) return false;
 			if(expected == 0p) {
