Changes in benchmark/io/http/options.hfa [03ed863:0aec496]
- File:
-
- 1 edited
-
benchmark/io/http/options.hfa (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/io/http/options.hfa
r03ed863 r0aec496 6 6 7 7 struct Options { 8 struct { 9 int open_flags; 10 uint32_t hash_seed; 11 size_t size; 12 bool list; 13 bool fixed_fds; 14 } file_cache; 15 16 struct { 17 int port; 18 int backlog; 19 int buflen; 20 } socket; 21 22 struct { 23 int nprocs; 24 int nworkers; 25 int flags; 26 int chan_size; 27 bool procstats; 28 bool viewhalts; 29 cluster * instance; 30 } clopts; 8 int open_flags; 9 uint32_t hash_seed; 10 size_t file_cache_size; 11 bool procstats; 12 bool viewhalts; 13 cluster * the_cluster; 31 14 }; 32 15 33 16 extern Options options; 34 35 const char * parse_options( int argc, char * argv[] );
Note:
See TracChangeset
for help on using the changeset viewer.