Changeset bdbb448
- Timestamp:
- Jul 11, 2023, 2:35:50 PM (2 years ago)
- Branches:
- master
- Children:
- 68db00e, fc95df3
- Parents:
- c16cc99
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/colby_parsons_MMAth/text/waituntil.tex
rc16cc99 rbdbb448 120 120 121 121 // on_selected is run on the selecting thread prior to executing the statement associated with the select_node 122 voidon_selected( T &, select_node & );122 bool on_selected( T &, select_node & ); 123 123 }; 124 124 \end{cfa} -
libcfa/src/concurrency/select.hfa
rc16cc99 rbdbb448 95 95 // This routine is run on the selecting thread prior to executing the statement corresponding to the select_node 96 96 // passed as an arg to this routine 97 // If on_selected returns false, the statement is not run, if it returns true it is run. 97 // If on_selected returns false, the statement is not run if the on_selected call occured as 98 // part of a statement block that only ran due to an unregister_select that returned true 99 // In all other executions the return value is ignored. 98 100 bool on_selected( T &, select_node & ); 99 101 };
Note:
See TracChangeset
for help on using the changeset viewer.