diff options
author | Don Anderson <dda@ddanderson.com> | 2013-08-13 14:38:47 -0400 |
---|---|---|
committer | Don Anderson <dda@ddanderson.com> | 2013-08-13 14:38:47 -0400 |
commit | e853178efb90624fb173d1f3cf4029b26a99268d (patch) | |
tree | b5ff103ce3f0580e717c6cee42566d9c6f45e604 /bench/wtperf/wtperf.c | |
parent | 969c8fd10631d54218fc09b3a20fa345bf2560c1 (diff) | |
download | mongo-e853178efb90624fb173d1f3cf4029b26a99268d.tar.gz |
alphabetize forward definitions. refs #593
Diffstat (limited to 'bench/wtperf/wtperf.c')
-rw-r--r-- | bench/wtperf/wtperf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/bench/wtperf/wtperf.c b/bench/wtperf/wtperf.c index ea93586a3d1..32f2e1d0818 100644 --- a/bench/wtperf/wtperf.c +++ b/bench/wtperf/wtperf.c @@ -111,18 +111,18 @@ int lprintf(CONFIG *cfg, int err, uint32_t level, const char *fmt, ...) #endif ; void *checkpoint_worker(void *); -int find_table_count(CONFIG *); -void *insert_thread(void *); -int connection_reconfigure(WT_CONNECTION *, const char *); void config_assign(CONFIG *, const CONFIG *); void config_free(CONFIG *); int config_opt(CONFIG *, WT_CONFIG_ITEM *, WT_CONFIG_ITEM *); -int config_opt_str(CONFIG *, WT_SESSION *, const char *, const char *); -int config_opt_int(CONFIG *, WT_SESSION *, const char *, const char *); int config_opt_file(CONFIG *, WT_SESSION *, const char *); +int config_opt_int(CONFIG *, WT_SESSION *, const char *, const char *); int config_opt_line(CONFIG *, WT_SESSION *, const char *); +int config_opt_str(CONFIG *, WT_SESSION *, const char *, const char *); void config_opt_usage(void); +int connection_reconfigure(WT_CONNECTION *, const char *); +int find_table_count(CONFIG *); void indent_lines(const char *, const char *); +void *insert_thread(void *); void *populate_thread(void *); void print_config(CONFIG *); void *read_thread(void *); @@ -134,8 +134,8 @@ char *strstr_right(const char *str, const char *match, const char **rightp); void *update_thread(void *); void usage(void); void worker(CONFIG *, uint32_t); -void wtperf_srand(CONFIG *); uint64_t wtperf_rand(CONFIG *); +void wtperf_srand(CONFIG *); uint64_t wtperf_value_range(CONFIG *); #define DEFAULT_LSM_CONFIG \ |