Changeset ee897e4b for src/libcfa/concurrency/coroutines
- Timestamp:
- Feb 13, 2017, 5:13:11 PM (8 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:
- eafb094
- Parents:
- db6f06a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/libcfa/concurrency/coroutines ¶
rdb6f06a ree897e4b 77 77 "Possible cause is a suspend executed in a member called by a coroutine user rather than by the coroutine main.", 78 78 src->name, src ); 79 assertf( src->last-> notHalted,79 assertf( src->last->state != Halted, 80 80 "Attempt by coroutine \"%.256s\" (%p) to suspend back to terminated coroutine \"%.256s\" (%p).\n" 81 81 "Possible cause is terminated coroutine's main routine has already returned.", … … 98 98 // not resuming self ? 99 99 if ( src != dst ) { 100 assertf( dst-> notHalted ,100 assertf( dst->state != Halted , 101 101 "Attempt by coroutine %.256s (%p) to resume terminated coroutine %.256s (%p).\n" 102 102 "Possible cause is terminated coroutine's main routine has already returned.", … … 116 116 // not resuming self ? 117 117 if ( src != dst ) { 118 assertf( dst-> notHalted ,118 assertf( dst->state != Halted , 119 119 "Attempt by coroutine %.256s (%p) to resume terminated coroutine %.256s (%p).\n" 120 120 "Possible cause is terminated coroutine's main routine has already returned.",
Note: See TracChangeset
for help on using the changeset viewer.