Index: libcfa/src/concurrency/thread.cfa
===================================================================
--- libcfa/src/concurrency/thread.cfa	(revision c7a900a12cc0fbe737f58157787bd96980702780)
+++ libcfa/src/concurrency/thread.cfa	(revision 7030dab75c493bbd89de53cb88e496019c794ff4)
@@ -25,5 +25,5 @@
 //-----------------------------------------------------------------------------
 // Thread ctors and dtors
-void ?{}(thread_desc & this, const char * const name, cluster & cl, void * storage, size_t storageSize ) with( this ) {
+void ?{}($thread & this, const char * const name, cluster & cl, void * storage, size_t storageSize ) with( this ) {
 	context{ 0p, 0p };
 	self_cor{ name, storage, storageSize };
@@ -44,5 +44,5 @@
 }
 
-void ^?{}(thread_desc& this) with( this ) {
+void ^?{}($thread& this) with( this ) {
 	unregister(curr_cluster, this);
 	^self_cor{};
@@ -53,5 +53,5 @@
 forall( dtype T | is_thread(T) )
 void __thrd_start( T & this, void (*main_p)(T &) ) {
-	thread_desc * this_thrd = get_thread(this);
+	$thread * this_thrd = get_thread(this);
 
 	disable_interrupts();
