Changeset e6e250d for libcfa/src/concurrency/future.hfa
- Timestamp:
- Mar 29, 2026, 11:03:25 PM (5 days ago)
- Branches:
- master
- Parents:
- 81ab5eb
- File:
-
- 1 edited
-
libcfa/src/concurrency/future.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/future.hfa
r81ab5eb re6e250d 10 10 // Created On : Wed Jan 06 17:33:18 2021 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sun Mar 29 2 1:13:04202613 // Update Count : 22 312 // Last Modified On : Sun Mar 29 22:47:01 2026 13 // Update Count : 224 14 14 // 15 15 … … 79 79 80 80 bool unregister_select$( future(T) & fut, select_node & s ) with( fut ) { // for waituntil statement 81 if ( ! isListed( s ) ) return false;82 lock( lock ); 83 if ( isListed( s ) ) remove( s );81 if ( ! listed( s ) ) return false; 82 lock( lock ); 83 if ( listed( s ) ) remove( s ); 84 84 unlock( lock ); 85 85 return false;
Note:
See TracChangeset
for help on using the changeset viewer.