params.cc clarify conditional compilation(#20699)

This commit is contained in:
Dean Lee
2021-04-19 18:16:30 +08:00
committed by GitHub
parent 64bb9b53ea
commit 737d002d80
+1 -6
View File
@@ -32,17 +32,12 @@ namespace {
#if defined(QCOM) || defined(QCOM2)
const std::string default_params_path = "/data/params";
#else
const std::string default_params_path = util::getenv_default("HOME", "/.comma/params", "/data/params");
#endif
#if defined(QCOM) || defined(QCOM2)
const std::string persistent_params_path = "/persist/comma/params";
#else
const std::string default_params_path = util::getenv_default("HOME", "/.comma/params", "/data/params");
const std::string persistent_params_path = default_params_path;
#endif
volatile sig_atomic_t params_do_exit = 0;
void params_sig_handler(int signal) {
params_do_exit = 1;