Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified src/libcfa/concurrency/coroutines.c

    r0c92c9f ree897e4b  
    6161
    6262void ?{}(coroutine* this) {
    63         this->name = "Anonymous Coroutine";
     63        this{ "Anonymous Coroutine" };
     64}
     65
     66void ?{}(coroutine* this, const char * name) {
     67        this->name = name;
    6468        this->errno_ = 0;
    6569        this->state = Start;
    66       this->notHalted = true;
    6770        this->starter = NULL;
    6871        this->last = NULL;
Note: See TracChangeset for help on using the changeset viewer.