Ignore:
File:
1 edited

Legend:

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

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