Changeset a1a17a7 for src/libcfa/concurrency/thread.c
- Timestamp:
- May 22, 2018, 4:39:48 PM (5 years ago)
- Branches:
- 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:
- 13073be, 2c88368
- Parents:
- 639991a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/thread.c
r639991a ra1a17a7 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.