From 0798d54b4fc28be881e2c4012663b1461bc85ba7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 3 Feb 2005 11:25:52 +0000 Subject: r5195: most events don't need the time of the event, so save a gettimeofday() call and just use timeval_current() when its actually needed (This used to be commit 236403cc4dc2924ed6a898acae0bb44cc1688dcc) --- source4/torture/nbt/query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture') diff --git a/source4/torture/nbt/query.c b/source4/torture/nbt/query.c index b89a774e06..942c7fbef4 100644 --- a/source4/torture/nbt/query.c +++ b/source4/torture/nbt/query.c @@ -75,7 +75,7 @@ static BOOL bench_namequery(TALLOC_CTX *mem_ctx, struct nbt_name *name, const ch req->async.fn = increment_handler; req->async.private = result; num_sent++; - if (num_sent % 100 == 0) { + if (num_sent % 1000 == 0) { printf("%.1f queries per second (%d failures) \r", result->num_pass / timeval_elapsed(&tv), result->num_fail); -- cgit