Changeset 2c88368 for src/libcfa/concurrency/thread.c
- Timestamp:
- May 22, 2018, 4:46:29 PM (5 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 59c034c6, d807ca28
- Parents:
- a8706fc (diff), a1a17a7 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/thread.c
ra8706fc r2c88368 42 42 node.next = NULL; 43 43 node.prev = NULL; 44 doregister( this);44 doregister(curr_cluster, this); 45 45 46 46 monitors{ &self_mon_p, 1, (fptr_t)0 }; … … 48 48 49 49 void ^?{}(thread_desc& this) with( this ) { 50 unregister( this);50 unregister(curr_cluster, this); 51 51 ^self_cor{}; 52 52 }
Note: See TracChangeset
for help on using the changeset viewer.