Index: libcfa/src/concurrency/thread.cfa
===================================================================
--- libcfa/src/concurrency/thread.cfa	(revision 305aaefa257af19c1447306fa40fd1b53be531b6)
+++ libcfa/src/concurrency/thread.cfa	(revision 015925aa27a2898e2c8dc848bc56a9000843accf)
@@ -53,5 +53,6 @@
 	node.prev = 0p;
 
-	clh_node = new( false );
+	clh_node = malloc( );
+	*clh_node = false;
 
 	doregister(curr_cluster, this);
@@ -63,5 +64,5 @@
 		canary = 0xDEADDEADDEADDEADp;
 	#endif
-	delete(clh_node);
+	free(clh_node);
 	unregister(curr_cluster, this);
 	^self_cor{};
