log_writer_file: rename perf counters

To be more consistent with the rest of the system
This commit is contained in:
Beat Küng
2017-03-16 08:51:06 +01:00
committed by Lorenz Meier
parent 190c14c186
commit bfcbe4b6c3
+2 -2
View File
@@ -54,8 +54,8 @@ LogWriterFile::LogWriterFile(size_t buffer_size) :
pthread_mutex_init(&_mtx, nullptr);
pthread_cond_init(&_cv, nullptr);
/* allocate write performance counters */
_perf_write = perf_alloc(PC_ELAPSED, "sd write");
_perf_fsync = perf_alloc(PC_ELAPSED, "sd fsync");
_perf_write = perf_alloc(PC_ELAPSED, "logger_sd_write");
_perf_fsync = perf_alloc(PC_ELAPSED, "logger_sd_fsync");
}
bool LogWriterFile::init()