性能优化4,修复编译bug

This commit is contained in:
sladro 2026-01-12 20:56:58 +08:00
parent 4ae1ac54e1
commit 6f1e1f3f03

View File

@ -1,5 +1,7 @@
#pragma once
#include <atomic>
#include <thread>
#include <string>
#include "graph_manager.h"
@ -15,6 +17,9 @@ public:
private:
std::string config_path_;
GraphManager graph_manager_{};
std::atomic<bool> stop_signal_thread_{false};
std::thread signal_thread_;
};
} // namespace rk3588