Merge "Add a benchmark for using stdio to read a file in /proc."

This commit is contained in:
Elliott Hughes 2015-01-17 01:24:43 +00:00 committed by Gerrit Code Review
commit 3bbf463908

View File

@ -65,3 +65,13 @@ static void BM_stdio_fwrite_unbuffered(int iters, int chunk_size) {
ReadWriteTest(iters, chunk_size, fwrite, false);
}
BENCHMARK(BM_stdio_fwrite_unbuffered)->AT_COMMON_SIZES;
static void BM_stdio_fopen_fgets_fclose(int iters) {
char buf[1024];
for (int i = 0; i < iters; ++i) {
FILE* fp = fopen("/proc/version", "re");
fgets(buf, sizeof(buf), fp);
fclose(fp);
}
}
BENCHMARK(BM_stdio_fopen_fgets_fclose);