- Timestamp:
- May 12, 2022, 3:10:58 PM (4 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- 8060b2b, f835806
- Parents:
- f75e25b (diff), 491bb81 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- libcfa/src
- Files:
-
- 3 edited
-
concurrency/io.cfa (modified) (1 diff)
-
concurrency/ready_subqueue.hfa (modified) (2 diffs)
-
parseargs.cfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io.cfa
rf75e25b re5628db 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
rf75e25b re5628db 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; -
libcfa/src/parseargs.cfa
rf75e25b re5628db 208 208 } 209 209 210 if(strcmp(arg, "Y") == 0) { 211 value = true; 212 return true; 213 } 214 215 if(strcmp(arg, "y") == 0) { 216 value = true; 217 return true; 218 } 219 210 220 if(strcmp(arg, "no") == 0) { 221 value = false; 222 return true; 223 } 224 225 if(strcmp(arg, "N") == 0) { 226 value = false; 227 return true; 228 } 229 230 if(strcmp(arg, "n") == 0) { 211 231 value = false; 212 232 return true;
Note:
See TracChangeset
for help on using the changeset viewer.