Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/io/http/options.hfa

    r0aec496 r03ed863  
    66
    77struct Options {
    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;
     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;
    1431};
    1532
    1633extern Options options;
     34
     35const char * parse_options( int argc, char * argv[] );
Note: See TracChangeset for help on using the changeset viewer.