Index: libcfa/src/concurrency/locks.cfa
===================================================================
--- libcfa/src/concurrency/locks.cfa	(revision 00675ed4c2f48a20d015179ca8dc1e151fce57a5)
+++ libcfa/src/concurrency/locks.cfa	(revision bb9897ca4557693d413d432fa46eb70dbd3adbd0)
@@ -220,5 +220,5 @@
 bool unregister_select$( blocking_lock & this, select_node & node ) with(this) {
 	lock( lock __cfaabi_dbg_ctx2 );
-	if ( isListed( node ) ) {
+	if ( listed( node ) ) {
 		remove( node );
 		wait_count--;
@@ -265,5 +265,5 @@
 		// 	may still be called after a thread has been removed from the queue but
 		// 	before the alarm is unregistered
-		if ( isListed( *info_thd ) ) {					// is thread on queue
+		if ( listed( *info_thd ) ) {					// is thread on queue
 			info_thd->signalled = false;
 			// remove this thread O(1)
@@ -304,5 +304,5 @@
 		// 	may still be called after a thread has been removed from the queue but
 		// 	before the alarm is unregistered
-		if ( isListed( *info_thd ) ) {					// is thread on queue
+		if ( listed( *info_thd ) ) {					// is thread on queue
 			info_thd->signalled = false;
 			// remove this thread O(1)
