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