Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/coroutine.cfa

    r2026bb6 r63364d8  
    1313// Update Count     : 9
    1414//
    15 
    16 #define __cforall_thread__
    1715
    1816#include "coroutine.hfa"
     
    10098
    10199void ^?{}(coroutine_desc& this) {
    102         if(this.state != Halted && this.state != Start && this.state != Primed) {
     100        if(this.state != Halted && this.state != Start) {
    103101                coroutine_desc * src = TL_GET( this_thread )->curr_cor;
    104102                coroutine_desc * dst = &this;
Note: See TracChangeset for help on using the changeset viewer.