Changeset 8a039be
- Timestamp:
- Sep 29, 2021, 7:06:48 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, forall-pointer-decay, master, pthread-emulation, qualifiedEnum
- Children:
- 1ed9cb63
- Parents:
- 45c9441
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/options.cfa
r45c9441 r8a039be 52 52 // bool sqkpoll = false; 53 53 // bool iokpoll = false; 54 unsigned nentries = 16;54 unsigned nentries = 0; 55 55 bool isolate = false; 56 56 … … 79 79 parse_args( argc, argv, opt, opt_cnt, "[OPTIONS]... [PATH]\ncforall http server", left ); 80 80 81 if( !is_pow2(nentries) ) {81 if( nentries != 0 && !is_pow2(nentries) ) { 82 82 unsigned v = nentries; 83 83 v--;
Note: See TracChangeset
for help on using the changeset viewer.