Changeset 5407cdc for libcfa/src/concurrency/invoke.h
- Timestamp:
- Apr 28, 2021, 4:56:50 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 8d66610
- Parents:
- feacef9 (diff), b7fd2db6 (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
-
libcfa/src/concurrency/invoke.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/invoke.h
rfeacef9 r5407cdc 148 148 struct $thread * prev; 149 149 volatile unsigned long long ts; 150 intpreferred;150 unsigned preferred; 151 151 }; 152 152 … … 200 200 } node; 201 201 202 struct processor * last_proc; 203 202 204 #if defined( __CFA_WITH_VERIFY__ ) 203 205 void * canary; … … 224 226 } 225 227 228 static inline $thread * volatile & ?`next ( $thread * this ) __attribute__((const)) { 229 return this->seqable.next; 230 } 231 226 232 static inline $thread *& Back( $thread * this ) __attribute__((const)) { 227 233 return this->seqable.back;
Note:
See TracChangeset
for help on using the changeset viewer.