Changes in / [466b1c9:a927662]
- File:
-
- 1 edited
-
libcfa/src/concurrency/coroutine.hfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/coroutine.hfa
r466b1c9 ra927662 46 46 //----------------------------------------------------------------------------- 47 47 // Public coroutine API 48 static inline void suspend( void);48 static inline void suspend(); 49 49 50 50 forall(dtype T | is_coroutine(T)) … … 71 71 72 72 // Suspend implementation inlined for performance 73 static inline void suspend( void) {73 static inline void suspend() { 74 74 // optimization : read TLS once and reuse it 75 75 // Safety note: this is preemption safe since if
Note:
See TracChangeset
for help on using the changeset viewer.