- File:
-
- 1 edited
-
libcfa/src/concurrency/kernel/cluster.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel/cluster.cfa
r1756e08 rcd3fc46 254 254 } 255 255 256 static void assign_list(unsigned & valrq, unsigned & valio, dlist( structprocessor) & list, unsigned count) {257 structprocessor * it = &list`first;256 static void assign_list(unsigned & valrq, unsigned & valio, dlist(processor) & list, unsigned count) { 257 processor * it = &list`first; 258 258 for(unsigned i = 0; i < count; i++) { 259 259 /* paranoid */ verifyf( it, "Unexpected null iterator, at index %u of %u\n", i, count); … … 278 278 279 279 #if defined(CFA_HAVE_LINUX_IO_URING_H) 280 static void assign_io(io_context$ ** data, size_t count, dlist( structprocessor) & list) {281 structprocessor * it = &list`first;280 static void assign_io(io_context$ ** data, size_t count, dlist(processor) & list) { 281 processor * it = &list`first; 282 282 while(it) { 283 283 /* paranoid */ verifyf( it, "Unexpected null iterator\n");
Note:
See TracChangeset
for help on using the changeset viewer.