Changes in benchmark/io/http/main.cfa [2cd784a:3eb540fb]
- File:
-
- 1 edited
-
benchmark/io/http/main.cfa (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/main.cfa
r2cd784a r3eb540fb 190 190 init_protocol(); 191 191 { 192 Worker workers[options.clopts.nworkers];192 Worker * workers = anew(options.clopts.nworkers); 193 193 for(i; options.clopts.nworkers) { 194 194 // if( options.file_cache.fixed_fds ) { … … 212 212 } 213 213 sout | nl; 214 if(!options.interactive) park(); 214 215 { 215 216 char buffer[128]; … … 249 250 250 251 sout | "Stopping connection threads..." | nonl; flush( sout ); 252 adelete(workers); 251 253 } 252 254 sout | "done";
Note:
See TracChangeset
for help on using the changeset viewer.