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