Ignore:
File:
1 edited

Legend:

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

    r84e2523 r0c92c9f  
    6262void ?{}(coroutine* this) {
    6363        this->name = "Anonymous Coroutine";
    64         this->errno_ = 0;
    65         this->state = Start;
    66       this->notHalted = true;
    67         this->starter = NULL;
    68         this->last = NULL;
    69 }
    70 
    71 void ?{}(coroutine* this, const char * name) {
    72         this->name = name;
    7364        this->errno_ = 0;
    7465        this->state = Start;
     
    169160        this->context = this->base;
    170161        this->top = (char *)this->context + cxtSize;
    171 
    172         LIB_DEBUG_PRINTF("Coroutine : created stack %p\n", this->base);
    173162}
    174163
Note: See TracChangeset for help on using the changeset viewer.