repos
/
benchmark
/ headblob
summary
|
shortlog
|
log
|
tree
|
annotate
|
headblob
|
filehistory
plain
/
/simple-call.cpp
1
#include "benchmark.h"
2
3
#include <QObject>
4
5
static QObject object;
6
7
extern "C" {
8
9
CL_SMOKE_BENCHMARK_EXPORT void
10
cl_smoke_benchmark_simple_call(size_t iterations)
11
{
12
for (size_t i=0; i<iterations; i++)
13
object.killTimer(0);
14
}
15
16
} // extern "C"