Changes in / [8133121:3d8d7a7]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/coroutine.hfa
r8133121 r3d8d7a7 117 117 // Resume implementation inlined for performance 118 118 forall(dtype T | is_coroutine(T)) 119 static inline T &resume(T & cor) {119 static inline void 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;149 147 } 150 148
Note: See TracChangeset
for help on using the changeset viewer.