Changeset f7fac4b for libcfa/src/concurrency/io
- Timestamp:
- Aug 25, 2020, 9:17:22 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- af4487d
- Parents:
- 95472ee (diff), ceb7db8 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io/setup.cfa
r95472ee rf7fac4b 384 384 /* paranoid */ verify( is_pow2( params_in.num_ready ) || (params_in.num_ready < 8) ); 385 385 sq.ready_cnt = max( params_in.num_ready, 8 ); 386 sq.ready = alloc _align( 64, sq.ready_cnt);386 sq.ready = alloc( sq.ready_cnt, 64`align ); 387 387 for(i; sq.ready_cnt) { 388 388 sq.ready[i] = -1ul32;
Note:
See TracChangeset
for help on using the changeset viewer.