Index: libcfa/src/concurrency/select.cfa
===================================================================
--- libcfa/src/concurrency/select.cfa	(revision e1358c0ea59c560c010e5261b3e1fe2ac3ad8a2c)
+++ libcfa/src/concurrency/select.cfa	(revision f6488757731bf9da1b54ac4c4feec8d0f53671aa)
@@ -10,7 +10,7 @@
 // Author           : Colby Alexander Parsons
 // Created On       : Thu Apr 21 19:46:50 2023
-// Last Modified By : Kyoung Seo
-// Last Modified On : Wed Mar 19 12:00:00 2025
-// Update Count     : 1
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sun Nov 23 22:38:53 2025
+// Update Count     : 4
 //
 
@@ -39,5 +39,5 @@
 
 // Selectable trait routines
-bool register_select( select_timeout_node & this, select_node & node ) {
+bool register_select$( select_timeout_node & this, select_node & node ) {
     this.s_node = &node;
     node.extra = 0p;
@@ -45,8 +45,8 @@
     return false;
 }
-bool unregister_select( select_timeout_node & this, select_node & node ) {
+bool unregister_select$( select_timeout_node & this, select_node & node ) {
     unregister_self( &this.a_node );
     return false;
 }
-bool on_selected( select_timeout_node & this, select_node & node ) { return true; }
+bool on_selected$( select_timeout_node & this, select_node & node ) { return true; }
 
