- File:
-
- 1 edited
-
libcfa/src/concurrency/select.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/select.cfa
re1358c0 rb93bf85 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:00 202514 // Update Count : 112 // Last Modified By : 13 // Last Modified On : 14 // Update Count : 15 15 // 16 16 … … 51 51 bool on_selected( select_timeout_node & this, select_node & node ) { return true; } 52 52 53 // Gateway routine to wait on duration 54 select_timeout_node timeout( Duration duration ) { 55 select_timeout_node node{ duration, timeout_handler_select_cast }; 56 return node; 57 } 58 select_timeout_node sleep( Duration duration ) { return timeout( duration ); } 59
Note:
See TracChangeset
for help on using the changeset viewer.