Index: src/libcfa/concurrency/thread
===================================================================
--- src/libcfa/concurrency/thread	(revision 9f1695b6330182a20c37121261ecfa8d045ebd62)
+++ src/libcfa/concurrency/thread	(revision 17af7d185d75583696ef5e090868e66c99131d40)
@@ -33,13 +33,13 @@
 };
 
-#define DECL_THREAD(X) thread_desc* get_thread(X* this) { return &this->t; } void main(X* this)
+#define DECL_THREAD(X) thread_desc* get_thread(X* this) { return &this->__thrd; } void main(X* this)
 
 forall( dtype T | is_thread(T) )
 static inline coroutine_desc* get_coroutine(T* this) {
-	return &get_thread(this)->c;
+	return &get_thread(this)->cor;
 }
 
 static inline coroutine_desc* get_coroutine(thread_desc* this) {
-	return &this->c;
+	return &this->cor;
 }
 
