Changeset f23b685
- Timestamp:
- Jan 9, 2019, 1:11:08 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 76e069f
- Parents:
- 274da98
- Location:
- libcfa/src/concurrency
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/coroutine.cfa
r274da98 rf23b685 165 165 coroutine_desc * src = TL_GET( this_coroutine ); // optimization 166 166 167 src->state = Halted; 168 167 169 assertf( src->starter != 0, 168 170 "Attempt to suspend/leave coroutine \"%.256s\" (%p) that has never been resumed.\n" -
libcfa/src/concurrency/invoke.c
r274da98 rf23b685 49 49 50 50 main( this ); 51 52 cor->state = Halted;53 51 54 52 //Final suspend, should never return -
libcfa/src/concurrency/invoke.h
r274da98 rf23b685 88 88 }; 89 89 90 // struct which calls the monitor is accepting 90 91 struct __waitfor_mask_t { 91 92 // the index of the accepted function, -1 if none
Note: See TracChangeset
for help on using the changeset viewer.