--skip: pass option with options_t to agents
This commit is contained in:
parent
eb72e0d2ce
commit
0b3abadab1
@ -256,7 +256,7 @@ void Connection::drive_write_machine(double now) {
|
||||
issue_something(now);
|
||||
stats.log_op(op_queue.size());
|
||||
|
||||
if (args.skip_given && op_queue.size() >= (size_t) options.depth) {
|
||||
if (options.skip && op_queue.size() >= (size_t) options.depth) {
|
||||
next_time += iagen->generate();
|
||||
|
||||
while (next_time < now) {
|
||||
|
@ -33,6 +33,7 @@ typedef struct {
|
||||
int threads;
|
||||
enum distribution_t iadist;
|
||||
int warmup;
|
||||
bool skip;
|
||||
|
||||
bool roundrobin;
|
||||
int server_given;
|
||||
|
@ -1017,6 +1017,7 @@ void args_to_options(options_t* options) {
|
||||
strcpy(options->ia, args.iadist_arg);
|
||||
options->warmup = args.warmup_given ? args.warmup_arg : 0;
|
||||
options->oob_thread = false;
|
||||
options->skip = args.skip_given;
|
||||
}
|
||||
|
||||
void init_random_stuff() {
|
||||
|
Loading…
Reference in New Issue
Block a user