Changes in libcfa/src/concurrency/invoke.h [d3ba775:89eff25]
- File:
-
- 1 edited
-
libcfa/src/concurrency/invoke.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/invoke.h
rd3ba775 r89eff25 146 146 struct __thread_desc_link { 147 147 struct $thread * next; 148 struct $thread * prev; 148 149 volatile unsigned long long ts; 150 unsigned preferred; 149 151 }; 150 152 … … 153 155 // context that is switch during a __cfactx_switch 154 156 struct __stack_context_t context; 155 156 // Link lists fields157 // instrusive link field for threads158 struct __thread_desc_link link;159 157 160 158 // current execution status for coroutine … … 172 170 struct cluster * curr_cluster; 173 171 174 // preferred ready-queue 175 unsigned preferred; 172 // Link lists fields 173 // instrusive link field for threads 174 struct __thread_desc_link link; 176 175 177 176 // coroutine body used to store context
Note:
See TracChangeset
for help on using the changeset viewer.