From 131bb49be39b8de276e8ad71f661de3f7e6c895f Mon Sep 17 00:00:00 2001 From: "Dmitriy A. Gerasimov" <dmitriy.gerasimov@demlabs.net> Date: Tue, 23 Mar 2021 17:28:55 +0700 Subject: [PATCH] [!] One more hotfix --- CMakeLists.txt | 2 +- sources/sig_unix_handler.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index af3030ab6..c8786222d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set(CMAKE_C_STANDARD 11) SET( CPACK_PACKAGE_NAME "${PROJECT_NAME}") SET( CPACK_PACKAGE_VERSION_MAJOR 4) SET( CPACK_PACKAGE_VERSION_MINOR 3) -SET( CPACK_PACKAGE_VERSION_PATCH 44) +SET( CPACK_PACKAGE_VERSION_PATCH 45) # init CellFrame SDK add_definitions("-DDAP_VERSION=\"${CPACK_PACKAGE_VERSION_MAJOR}-${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}\"") diff --git a/sources/sig_unix_handler.c b/sources/sig_unix_handler.c index d3fd787f6..3d92f4205 100644 --- a/sources/sig_unix_handler.c +++ b/sources/sig_unix_handler.c @@ -29,10 +29,10 @@ static void sig_exit_handler(int sig_code) { int sig_unix_handler_init(const char *a_pid_path) { - char * l_pid_dir = dap_path_get_dirname(a_pid_path); - sleep(200); // Don't know why but without it it crashes O_o - dap_mkdir_with_parents(l_pid_dir); - DAP_DELETE(l_pid_dir); + //char * l_pid_dir = dap_path_get_dirname(a_pid_path); + //sleep(1); // Don't know why but without it it crashes O_o + //dap_mkdir_with_parents(l_pid_dir); + //DAP_DELETE(l_pid_dir); s_pid_path = strdup(a_pid_path); -- GitLab