From d4ff7769130a6ba92fe740eb7b365b5670ae5c4d Mon Sep 17 00:00:00 2001 From: hvlad Date: Tue, 21 Feb 2017 17:25:56 +0200 Subject: [PATCH] Misc --- src/common/file_params.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/common/file_params.h b/src/common/file_params.h index 4df25b053f..134952dc5c 100644 --- a/src/common/file_params.h +++ b/src/common/file_params.h @@ -32,11 +32,13 @@ #ifndef COMMON_FILE_PARAMS_H #define COMMON_FILE_PARAMS_H +#define COMMON_FILE_PREFIX "13" + static const char* const EVENT_FILE = "fb_event_%s"; static const char* const LOCK_FILE = "fb_lock_%s"; static const char* const MONITOR_FILE = "fb_monitor_%s"; -static const char* const TRACE_FILE = "fb13_trace"; -static const char* const USER_MAP_FILE = "fb13_user_mapping"; +static const char* const TRACE_FILE = "fb" COMMON_FILE_PREFIX "_trace"; +static const char* const USER_MAP_FILE = "fb" COMMON_FILE_PREFIX "_user_mapping"; #ifdef UNIX static const char* const INIT_FILE = "fb_init";