Index: libcfa/src/concurrency/mutex.hfa
===================================================================
--- libcfa/src/concurrency/mutex.hfa	(revision 121be3ed70e29539bf3a9380cf584b566c77a51d)
+++ libcfa/src/concurrency/mutex.hfa	(revision 5c9b20cdbd8f11c2e3b1817c4e65a16c5f1e9a65)
@@ -36,5 +36,5 @@
 
 	// List of blocked threads
-	__queue_t(struct thread_desc) blocked_threads;
+	__queue_t(struct $thread) blocked_threads;
 
 	// Locked flag
@@ -55,8 +55,8 @@
 
 	// List of blocked threads
-	__queue_t(struct thread_desc) blocked_threads;
+	__queue_t(struct $thread) blocked_threads;
 
 	// Current thread owning the lock
-	struct thread_desc * owner;
+	struct $thread * owner;
 
 	// Number of recursion level
@@ -83,5 +83,5 @@
 
 	// List of blocked threads
-	__queue_t(struct thread_desc) blocked_threads;
+	__queue_t(struct $thread) blocked_threads;
 };
 
