Changes in benchmark/io/http/options.cfa [2cd784a:8a039be]
- File:
-
- 1 edited
-
benchmark/io/http/options.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/options.cfa
r2cd784a 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.