- File:
-
- 1 edited
-
src/libcfa/concurrency/coroutine.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/coroutine.c
rde6319f r14a61b5 84 84 // Wrapper for co 85 85 void CoroutineCtxSwitch(coroutine_desc* src, coroutine_desc* dst) { 86 // Safety note : This could cause some false positives due to preemption 86 87 verify( TL_GET( preemption_state ).enabled || TL_GET( this_processor )->do_terminate ); 87 88 disable_interrupts(); … … 91 92 92 93 // set new coroutine that task is executing 93 TL_SET( this_coroutine, dst );94 kernelTLS.this_coroutine = dst; 94 95 95 96 // context switch to specified coroutine … … 102 103 103 104 enable_interrupts( __cfaabi_dbg_ctx ); 105 // Safety note : This could cause some false positives due to preemption 104 106 verify( TL_GET( preemption_state ).enabled || TL_GET( this_processor )->do_terminate ); 105 107 } //ctxSwitchDirect
Note:
See TracChangeset
for help on using the changeset viewer.