Index: libcfa/src/concurrency/mutex.cfa
===================================================================
--- libcfa/src/concurrency/mutex.cfa	(revision ed52dd5a1c7e9f923332ea68382b2fcd254e9c48)
+++ libcfa/src/concurrency/mutex.cfa	(revision 1b4e5a84173be2ec1a815d98741f2ac6fb809dd5)
@@ -12,6 +12,6 @@
 // Created On       : Fri May 25 01:37:11 2018
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun Feb 19 17:01:36 2023
-// Update Count     : 3
+// Last Modified On : Thu Aug 21 22:35:44 2025
+// Update Count     : 4
 //
 
@@ -131,13 +131,13 @@
 //-----------------------------------------------------------------------------
 // Conditions
-void ?{}(condition_variable & this) {
+void ?{}(cond_lock & this) {
 	this.blocked_threads{};
 }
 
-void ^?{}(condition_variable & this) {
+void ^?{}(cond_lock & this) {
 	// default
 }
 
-void notify_one(condition_variable & this) with(this) {
+void notify_one(cond_lock & this) with(this) {
 	lock( lock __cfaabi_dbg_ctx2 );
 	unpark(
@@ -147,5 +147,5 @@
 }
 
-void notify_all(condition_variable & this) with(this) {
+void notify_all(cond_lock & this) with(this) {
 	lock( lock __cfaabi_dbg_ctx2 );
 	while(this.blocked_threads) {
@@ -157,5 +157,5 @@
 }
 
-void wait(condition_variable & this) {
+void wait(cond_lock & this) {
 	lock( this.lock __cfaabi_dbg_ctx2 );
 	append( this.blocked_threads, active_thread() );
@@ -165,5 +165,5 @@
 
 forall(L & | is_lock(L))
-void wait(condition_variable & this, L & l) {
+void wait(cond_lock & this, L & l) {
 	lock( this.lock __cfaabi_dbg_ctx2 );
 	append( this.blocked_threads, active_thread() );
