Changeset b4a835d for src/libcfa/concurrency/kernel
- Timestamp:
- May 8, 2018, 9:27:25 PM (7 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, with_gc
- Children:
- df22130
- Parents:
- 3d60c08 (diff), afd550c (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
r3d60c08 rb4a835d 53 53 // Preemption rate on this cluster 54 54 Duration preemption_rate; 55 56 // List of idle processors 57 // __dllist_t(struct processor) idles; 55 58 }; 56 59 … … 124 127 bool pending_preemption; 125 128 129 struct { 130 pthread_mutex_t lock; 131 pthread_cond_t cond; 132 } idle; 133 126 134 #ifdef __CFA_DEBUG__ 127 135 // Last function to enable preemption on this processor
Note:
See TracChangeset
for help on using the changeset viewer.