Index: tests/concurrent/semaphore.cfa
===================================================================
--- tests/concurrent/semaphore.cfa	(revision cf444b64a4a158958376dc2ab509245568729ad6)
+++ tests/concurrent/semaphore.cfa	(revision 605673faf63b2786abe9ac41c35cbc79f5ac7ed7)
@@ -22,5 +22,5 @@
 
 void main(Blocker & this) {
-	$thread * me = active_thread();
+	thread$ * me = active_thread();
 	this.sum = 0;
 	for(num_blocks) {
@@ -45,5 +45,5 @@
 		or else {}
 
-		$thread * t = V(ben, false);
+		thread$ * t = V(ben, false);
 		if(t) {
 			this.sum += (unsigned)t;
Index: tests/concurrent/signal/block.cfa
===================================================================
--- tests/concurrent/signal/block.cfa	(revision cf444b64a4a158958376dc2ab509245568729ad6)
+++ tests/concurrent/signal/block.cfa	(revision 605673faf63b2786abe9ac41c35cbc79f5ac7ed7)
@@ -33,6 +33,6 @@
 
 monitor global_data_t {
-	$thread * last_thread;
-	$thread * last_signaller;
+	thread$ * last_thread;
+	thread$ * last_signaller;
 };
 
@@ -82,5 +82,5 @@
 	if( !is_empty( cond ) ) {
 
-		$thread * next = ( $thread * ) front( cond );
+		thread$ * next = ( thread$ * ) front( cond );
 
 		if( ! signal_block( cond ) ) {
Index: tests/concurrent/spinaphore.cfa
===================================================================
--- tests/concurrent/spinaphore.cfa	(revision cf444b64a4a158958376dc2ab509245568729ad6)
+++ tests/concurrent/spinaphore.cfa	(revision 605673faf63b2786abe9ac41c35cbc79f5ac7ed7)
@@ -21,7 +21,7 @@
 void main(Blocker & this);
 
-Blocker * from_thread($thread * t) {
+Blocker * from_thread(thread$ * t) {
 	Blocker & nullb = *(Blocker*)0p;
-	$thread & nullt = (thread&)nullb;
+	thread$ & nullt = (thread&)nullb;
 	uintptr_t offset  = (uintptr_t)&nullt;
 	uintptr_t address = ((uintptr_t)t) - offset;
@@ -30,5 +30,5 @@
 
 void main(Blocker & this) {
-	$thread * me = active_thread();
+	thread$ * me = active_thread();
 	Blocker * me1 = &this;
 	Blocker * me2 = from_thread(me);
@@ -51,5 +51,5 @@
 	unsigned me = (unsigned)(uintptr_t)&this;
 	for(num_unblocks) {
-		$thread * t = V(sem, false);
+		thread$ * t = V(sem, false);
 		Blocker * b = from_thread(t);
 		b->sum += me;
Index: tests/unified_locking/mcs.cfa
===================================================================
--- tests/unified_locking/mcs.cfa	(revision cf444b64a4a158958376dc2ab509245568729ad6)
+++ tests/unified_locking/mcs.cfa	(revision 605673faf63b2786abe9ac41c35cbc79f5ac7ed7)
@@ -7,5 +7,5 @@
 struct MutexObj {
 	mcs_lock l;
-	$thread * id;
+	thread$ * id;
 	size_t sum;
 };
@@ -21,5 +21,5 @@
 
 unsigned cs() {
-	$thread * me = active_thread();
+	thread$ * me = active_thread();
 	unsigned value = (unsigned)me;
 	mcs_node n;
Index: tests/unified_locking/thread_test.cfa
===================================================================
--- tests/unified_locking/thread_test.cfa	(revision cf444b64a4a158958376dc2ab509245568729ad6)
+++ tests/unified_locking/thread_test.cfa	(revision 605673faf63b2786abe9ac41c35cbc79f5ac7ed7)
@@ -69,5 +69,5 @@
             break;
         default:
-            break; 
+            break;
     }
 	processor p[threadCount];
