Ignore:
Timestamp:
Mar 14, 2022, 3:00:06 PM (2 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
Children:
c7f2d9b
Parents:
884f3f67
Message:

Fixed some warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/ready_queue.cfa

    r884f3f67 rbfb9bf5  
    186186// try to pop from a lane given by index w
    187187static inline struct thread$ * try_pop(struct cluster * cltr, unsigned w __STATS(, __stats_readyQ_pop_t & stats)) with (cltr->sched) {
    188         const size_t lanes_count = readyQ.count;
    189         /* paranoid */ verify( w < lanes_count );
     188        /* paranoid */ verify( w < readyQ.count );
    190189        __STATS( stats.attempt++; )
    191190
Note: See TracChangeset for help on using the changeset viewer.