- File:
-
- 1 edited
-
libcfa/src/concurrency/coroutine.hfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/coroutine.hfa
r147a137 r6b33e89 10 10 // Created On : Mon Nov 28 12:27:26 2016 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 2 11:31:42 202313 // Update Count : 1 312 // Last Modified On : Fri Apr 25 06:52:04 2025 13 // Update Count : 15 14 14 // 15 15 … … 26 26 nonlocal_exception * next; 27 27 }; 28 static inline void ?{} ( nonlocal_exception & this, exception_t * ex ) with(this) { 28 29 static inline void ?{}( nonlocal_exception & this, exception_t * ex ) with(this) { 29 30 the_exception = ex; 30 next = 0p;31 this.next = 0p; 31 32 } 32 33 … … 66 67 // void ^?{}( coStack_t & this ); 67 68 68 void ?{}( coroutine$ & this, const char name[], void * storage, size_t storageSize );69 void ?{}( coroutine$ & this, const char name[], void * storage, size_t storageSize ); 69 70 void ^?{}( coroutine$ & this ); 70 71
Note:
See TracChangeset
for help on using the changeset viewer.