MCPcopy Create free account
hub / github.com/FastLED/FastLED / make_trace_label

Function make_trace_label

src/fl/task/task.cpp.hpp:15–19  ·  view source on GitHub ↗

Generate trace label from TracePoint

Source from the content-addressed store, hash-verified

13namespace {
14// Generate trace label from TracePoint
15string make_trace_label(const TracePoint& trace) {
16 sstream ss;
17 ss << fl::get<0>(trace) << ":" << fl::get<1>(trace);
18 return ss.str();
19}
20
21// Task ID generator (atomic for thread safety)
22int next_task_id() {

Callers 2

TimeTaskMethod · 0.85
CoroutineTaskMethod · 0.85

Calls 1

strMethod · 0.45

Tested by

no test coverage detected