@brief Sets thread name for current thread. Requires std::thread
| 3702 | } |
| 3703 | /// @brief Sets thread name for current thread. Requires std::thread |
| 3704 | static inline void setThreadName(const std::string& name) { |
| 3705 | ELPP->setThreadName(name); |
| 3706 | } |
| 3707 | static inline std::string getThreadName() { |
| 3708 | return ELPP->getThreadName(base::threading::getCurrentThreadId()); |
| 3709 | } |
nothing calls this directly
no test coverage detected