Changes in src/libcfa/concurrency/thread.c [de6319f:b10affd]
- File:
-
- 1 edited
-
src/libcfa/concurrency/thread.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/thread.c
rde6319f rb10affd 30 30 //----------------------------------------------------------------------------- 31 31 // Thread ctors and dtors 32 void ?{}(thread_desc & this, const char * const name, cluster & cl, void * storage, size_t storageSize ) with( this ) { 33 self_cor{ name, storage, storageSize }; 34 verify(&self_cor); 32 33 void ?{}(thread_desc& this) with( this ) { 34 self_cor{}; 35 self_cor.name = "Anonymous Coroutine"; 35 36 curr_cor = &self_cor; 36 37 self_mon.owner = &this; 37 38 self_mon.recursion = 1; 38 39 self_mon_p = &self_mon; 39 curr_cluster = &cl;40 40 next = NULL; 41 41 __cfaabi_dbg_debug_do(
Note:
See TracChangeset
for help on using the changeset viewer.