Beispiel #1
0
uint64_t
sum_insert_ops(WTPERF *wtperf)
{
	return (sum_ops(wtperf, offsetof(WTPERF_THREAD, insert)));
}
Beispiel #2
0
uint64_t
sum_update_ops(WTPERF *wtperf)
{
	return (sum_ops(wtperf, offsetof(WTPERF_THREAD, update)));
}
Beispiel #3
0
uint64_t
sum_read_ops(WTPERF *wtperf)
{
	return (sum_ops(wtperf, offsetof(WTPERF_THREAD, read)));
}
Beispiel #4
0
uint64_t
sum_truncate_ops(CONFIG *cfg)
{
	return (sum_ops(cfg, offsetof(CONFIG_THREAD, truncate)));
}
Beispiel #5
0
uint64_t
sum_read_ops(CONFIG *cfg)
{
	return (sum_ops(cfg, offsetof(CONFIG_THREAD, read)));
}
Beispiel #6
0
uint64_t
sum_insert_ops(CONFIG *cfg)
{
	return (sum_ops(cfg, offsetof(CONFIG_THREAD, insert)));
}