All public logs

From STEMX365-WIKI
Jump to navigationJump to search

Combined display of all available logs of STEMX365-WIKI. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 23:51, 10 April 2025 Admin talk contribs created page ROSH (Created page with "<pre> #include <iostream> #include <thread> #include <mutex> #include <condition_variable> #include <queue> #include <functional> #include <chrono> #include <atomic> class ActiveObject { private: std::thread worker_; std::queue<std::function<void()>> tasks_; std::mutex queue_mutex_; std::condition_variable cv_; std::atomic<bool> running_{false}; std::atomic<bool> periodic_active_{false}; std::chrono::milliseconds interval_; std::function...")