Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/ready_subqueue.hfa

    r8a5e357 re71e94a  
    8383        /* paranoid */ verify( node->link.ts   != 0  );
    8484        /* paranoid */ verify( this.anchor.ts  != 0  );
    85         /* paranoid */ verify( (this.anchor.ts  == MAX) == is_empty );
    8685        return [node, this.anchor.ts];
    8786}
     
    9493// Return the timestamp
    9594static inline unsigned long long ts(__intrusive_lane_t & this) {
    96         // Cannot verify 'emptiness' here since it may not be locked
     95        // Cannot verify here since it may not be locked
    9796        /* paranoid */ verify(this.anchor.ts != 0);
    9897        return this.anchor.ts;
Note: See TracChangeset for help on using the changeset viewer.