Parcourir la source

修复recorder模块文件句柄没释放的bug

lishengyin il y a 3 ans
Parent
commit
62d1e5279b

BIN
lib/libmodules.so


+ 1 - 1
modules/inference/src/inference.cpp

@@ -4,7 +4,7 @@
  * @Autor: lishengyin
  * @Date: 2021-10-13 09:35:37
  * @LastEditors: lishengyin
- * @LastEditTime: 2022-01-06 15:13:45
+ * @LastEditTime: 2022-01-07 09:52:33
  */
 #include "inference.h"
 

+ 8 - 4
modules/recorder/src/recorder.cpp

@@ -79,7 +79,7 @@ namespace MIVA
     void recorder::Start()
     {
         if(!this->RecordEnable) return;
-
+        DIR *dirp;
         time_t rawtime;
         char ctime[80];
         struct tm *info;
@@ -88,14 +88,18 @@ namespace MIVA
         strftime(ctime, 80, "%Y-%m-%d_%H:%M:%S", info);
         this->outDir = ctime;
         this->outDir = this->Dir + this->outDir.substr(0, 7);
-
-        if(opendir(this ->outDir.c_str()) == NULL){
+        dirp = opendir(this ->outDir.c_str());
+        if(dirp == NULL){
             mkdir((this->outDir).c_str(),S_IRWXU|S_IRWXG|S_IRWXO);
+        }else{
+            closedir(dirp);
         }
         this->outDir = this->outDir + "/" + ctime + "/";
-        if(opendir(this ->outDir.c_str()) == NULL){
+        dirp = opendir(this ->outDir.c_str());
+        if(dirp == NULL){
             mkdir((this->outDir).c_str(),S_IRWXU|S_IRWXG|S_IRWXO);
         }
+        if(dirp != NULL) closedir(dirp);
         m_recorder->enable = true;
     }
 

+ 1 - 1
modules/userApp/src/user_app.cpp

@@ -4,7 +4,7 @@
  * @Autor: lishengyin
  * @Date: 2021-10-13 09:35:42
  * @LastEditors: lishengyin
- * @LastEditTime: 2022-01-06 15:37:54
+ * @LastEditTime: 2022-01-07 09:52:22
  */
 #include "user_app.h"
 

+ 0 - 1
source/bin/check_fd.sh

@@ -1,3 +1,2 @@
 #!/bin/bash
-clear
 lsof -p $(pidof main) | wc -l