Changeset 5e0b6657 for libcfa/src/concurrency/select.cfa
- Timestamp:
- Dec 8, 2025, 11:29:33 AM (2 months ago)
- Branches:
- master
- Children:
- 79ba50c
- Parents:
- 8f448e0 (diff), 79ec8c3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
libcfa/src/concurrency/select.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/select.cfa
r8f448e0 r5e0b6657 10 10 // Author : Colby Alexander Parsons 11 11 // Created On : Thu Apr 21 19:46:50 2023 12 // Last Modified By : Kyoung Seo13 // Last Modified On : Wed Mar 19 12:00:00202514 // Update Count : 112 // Last Modified By : Peter A. Buhr 13 // Last Modified On : Sun Nov 23 22:38:53 2025 14 // Update Count : 4 15 15 // 16 16 … … 39 39 40 40 // Selectable trait routines 41 bool register_select ( select_timeout_node & this, select_node & node ) {41 bool register_select$( select_timeout_node & this, select_node & node ) { 42 42 this.s_node = &node; 43 43 node.extra = 0p; … … 45 45 return false; 46 46 } 47 bool unregister_select ( select_timeout_node & this, select_node & node ) {47 bool unregister_select$( select_timeout_node & this, select_node & node ) { 48 48 unregister_self( &this.a_node ); 49 49 return false; 50 50 } 51 bool on_selected ( select_timeout_node & this, select_node & node ) { return true; }51 bool on_selected$( select_timeout_node & this, select_node & node ) { return true; } 52 52
Note:
See TracChangeset
for help on using the changeset viewer.