- Timestamp:
- Dec 20, 2024, 3:35:35 PM (9 months ago)
- Branches:
- master
- Children:
- 9dc05782
- Parents:
- 77148b0 (diff), 5251c6b (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. - Location:
- libcfa/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/bits/stack.hfa
r77148b0 rd9f6d80 14 14 }; 15 15 16 inline {16 static inline { 17 17 // wrappers to make Collection have T 18 18 T & head( Stack(T) & s ) with( s ) { … … 70 70 struct StackIter { 71 71 inline ColIter; // Plan 9 inheritance 72 }; 72 }; 73 73 74 inline {74 static inline { 75 75 void ?{}( StackIter(T) & si ) with( si ) { 76 76 ((ColIter &)si){}; -
libcfa/src/concurrency/coroutine.cfa
r77148b0 rd9f6d80 81 81 82 82 // helper for popping from coroutine's ehm buffer 83 inlinenonlocal_exception * pop_ehm_head( coroutine$ * this ) {83 static nonlocal_exception * pop_ehm_head( coroutine$ * this ) { 84 84 lock( this->ehm_state.buffer_lock __cfaabi_dbg_ctx2 ); 85 85 nonlocal_exception * nl_ex = pop_head( this->ehm_state.ehm_buffer );
Note:
See TracChangeset
for help on using the changeset viewer.