diff --git a/include/sta/tacos/manager.hpp b/include/sta/tacos/manager.hpp index 8156e46..65f51c5 100644 --- a/include/sta/tacos/manager.hpp +++ b/include/sta/tacos/manager.hpp @@ -69,13 +69,6 @@ namespace sta */ std::vector> getActiveThreads(); - /** - * @brief Get the Active Threads object - * - * @return std::vector> - */ - std::vector> getActiveThreads(); - void init() override; void func() override; diff --git a/src/thread.cpp b/src/thread.cpp index 1af5246..41e2b16 100644 --- a/src/thread.cpp +++ b/src/thread.cpp @@ -25,7 +25,7 @@ namespace sta attribs_{ .name=name, .cb_size=cb_size, .stack_size=stack_size, .priority=prio }, running_{false}, #ifdef STA_TACOS_WATCHDOG_ENABLED - , status_{ThreadStatus::STOPPED}, + status_{ThreadStatus::STOPPED}, #endif // STA_TACOS_WATCHDOG_ENABLED terminate_{false} {