- File:
-
- 1 edited
-
libcfa/src/concurrency/coroutine.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/coroutine.cfa
r2026bb6 r63364d8 13 13 // Update Count : 9 14 14 // 15 16 #define __cforall_thread__17 15 18 16 #include "coroutine.hfa" … … 100 98 101 99 void ^?{}(coroutine_desc& this) { 102 if(this.state != Halted && this.state != Start && this.state != Primed) {100 if(this.state != Halted && this.state != Start) { 103 101 coroutine_desc * src = TL_GET( this_thread )->curr_cor; 104 102 coroutine_desc * dst = &this;
Note:
See TracChangeset
for help on using the changeset viewer.