Changeset d3a804f5 for src/libcfa/concurrency/coroutines.c
- Timestamp:
- Feb 14, 2017, 1:19:28 PM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 97d246d
- Parents:
- f923b5f (diff), eafb094 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/coroutines.c
rf923b5f rd3a804f5 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.