Changeset 8a5e357
- Timestamp:
 - May 5, 2022, 10:59:09 AM (4 years ago)
 - Branches:
 - ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
 - Children:
 - bd1d279
 - Parents:
 - 86b8d16
 - Location:
 - libcfa/src/concurrency
 - Files:
 - 
      
- 2 edited
 
- 
          
  io.cfa (modified) (1 diff)
 - 
          
  ready_subqueue.hfa (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
libcfa/src/concurrency/io.cfa
r86b8d16 r8a5e357 244 244 245 245 remote = true; 246 __STATS__( false, io.calls.helped++; )246 __STATS__( true, io.calls.helped++; ) 247 247 } 248 248 proc->io.target = MAX;  - 
      
libcfa/src/concurrency/ready_subqueue.hfa
r86b8d16 r8a5e357 83 83 /* paranoid */ verify( node->link.ts != 0 ); 84 84 /* paranoid */ verify( this.anchor.ts != 0 ); 85 /* paranoid */ verify( (this.anchor.ts == MAX) == is_empty ); 85 86 return [node, this.anchor.ts]; 86 87 } … … 93 94 // Return the timestamp 94 95 static inline unsigned long long ts(__intrusive_lane_t & this) { 95 // Cannot verify here since it may not be locked96 // Cannot verify 'emptiness' here since it may not be locked 96 97 /* paranoid */ verify(this.anchor.ts != 0); 97 98 return this.anchor.ts;  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.