- File:
-
- 1 edited
-
src/libcfa/concurrency/coroutines.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/coroutines.c
r0c92c9f r84e2523 62 62 void ?{}(coroutine* this) { 63 63 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; 64 73 this->errno_ = 0; 65 74 this->state = Start; … … 160 169 this->context = this->base; 161 170 this->top = (char *)this->context + cxtSize; 171 172 LIB_DEBUG_PRINTF("Coroutine : created stack %p\n", this->base); 162 173 } 163 174
Note:
See TracChangeset
for help on using the changeset viewer.