Changeset 6b224a52 for src/libcfa/concurrency/kernel
- Timestamp:
- Aug 25, 2017, 12:11:53 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, 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, resolv-new, with_gc
- Children:
- bf7b9da7
- Parents:
- 135b431 (diff), f676b84 (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/kernel
r135b431 r6b224a52 37 37 }; 38 38 39 void ?{}(semaphore *this, int count = 1);40 void ^?{}(semaphore *this);39 void ?{}(semaphore & this, int count = 1); 40 void ^?{}(semaphore & this); 41 41 void P(semaphore * this); 42 42 void V(semaphore * this); … … 51 51 }; 52 52 53 void ?{}(cluster *this);54 void ^?{}(cluster *this);53 void ?{}(cluster & this); 54 void ^?{}(cluster & this); 55 55 56 56 //----------------------------------------------------------------------------- … … 68 68 unsigned short thrd_count; 69 69 }; 70 static inline void ?{}(FinishAction *this) {71 this ->action_code = No_Action;72 this ->thrd = NULL;73 this ->lock = NULL;70 static inline void ?{}(FinishAction & this) { 71 this.action_code = No_Action; 72 this.thrd = NULL; 73 this.lock = NULL; 74 74 } 75 static inline void ^?{}(FinishAction *this) {}75 static inline void ^?{}(FinishAction & this) {} 76 76 77 77 // Processor … … 99 99 }; 100 100 101 void ?{}(processor *this);102 void ?{}(processor *this, cluster * cltr);103 void ^?{}(processor *this);101 void ?{}(processor & this); 102 void ?{}(processor & this, cluster * cltr); 103 void ^?{}(processor & this); 104 104 105 105 // Local Variables: //
Note:
See TracChangeset
for help on using the changeset viewer.