MCPcopy Create free account
hub / github.com/Compaile/ctrack / nested_function_b

Function nested_function_b

examples/complex_multithreaded_puzzle.cpp:33–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

31}
32
33void nested_function_b(int depth) {
34 CTRACK;
35 if (depth > 0) {
36 sleepy_function(3);
37 nested_function_b(depth - 1);
38 }
39 if (depth == 3) { // Hidden slow path
40 sleepy_function(100);
41 }
42}
43
44void complex_operation(int id) {
45 CTRACK;

Callers 1

complex_operationFunction · 0.85

Calls 1

sleepy_functionFunction · 0.85

Tested by

no test coverage detected