- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/libcfa/concurrency/coroutines.c ¶
r0c92c9f ree897e4b 61 61 62 62 void ?{}(coroutine* this) { 63 this->name = "Anonymous Coroutine"; 63 this{ "Anonymous Coroutine" }; 64 } 65 66 void ?{}(coroutine* this, const char * name) { 67 this->name = name; 64 68 this->errno_ = 0; 65 69 this->state = Start; 66 this->notHalted = true;67 70 this->starter = NULL; 68 71 this->last = NULL;
Note: See TracChangeset
for help on using the changeset viewer.