Changeset 8133121
- Timestamp:
- May 16, 2019, 1:37:10 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 1fb7bfd
- Parents:
- 3d8d7a7 (diff), aa00626 (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
-
libcfa/src/concurrency/coroutine.hfa
r3d8d7a7 r8133121 117 117 // Resume implementation inlined for performance 118 118 forall(dtype T | is_coroutine(T)) 119 static inline voidresume(T & cor) {119 static inline T & resume(T & cor) { 120 120 // optimization : read TLS once and reuse it 121 121 // Safety note: this is preemption safe since if … … 145 145 // always done for performance testing 146 146 CoroutineCtxSwitch( src, dst ); 147 148 return cor; 147 149 } 148 150
Note: See TracChangeset
for help on using the changeset viewer.