Changes in src/libcfa/concurrency/invoke.h [de94a60:afd550c]
- File:
-
- 1 edited
-
src/libcfa/concurrency/invoke.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/invoke.h
rde94a60 rafd550c 136 136 struct thread_desc * next; 137 137 138 struct { 139 struct thread_desc * next; 140 struct thread_desc * prev; 141 } node; 138 __cfaabi_dbg_debug_do( 139 // instrusive link field for debugging 140 struct thread_desc * dbg_next; 141 struct thread_desc * dbg_prev; 142 ) 142 143 }; 143 144 … … 146 147 static inline thread_desc * & get_next( thread_desc & this ) { 147 148 return this.next; 148 }149 150 static inline [thread_desc *&, thread_desc *& ] __get( thread_desc & this ) {151 return this.node.[next, prev];152 149 } 153 150
Note:
See TracChangeset
for help on using the changeset viewer.