/
vasandi
/
AirSim
Обзор
Документация
Войти
/
vasandi
/
AirSim
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
MavLinkCom/common_utils/ThreadUtils.hpp
21 строка
434 B
Андрей Васильченко
сборка под ubuntu 26.04
08 июл 2026, 10:15
08 июл 2026, 10:15
d53c5a2
Код
Авторство
О чём код?
#ifndef MavLinkCom_HighPriorityThread_hpp #define MavLinkCom_HighPriorityThread_hpp #include <thread> #include <string> namespace mavlink_utils { class CurrentThread { public: // make the current thread run with maximum priority. static bool setMaximumPriority(); // set a nice name on the current thread which aids in debugging. static bool setThreadName(const std::string& name); }; } #endif