3 questions from the last 30 days
1
vote
1
answer
76
views
Perf callgraph output doesn't look as I would expect for a test program with a delay loop that should take near 100% of the time
I'm experimenting with perf record --control to profile select sections of a program.
Here's a Rust program that uses perf to profile the call to a function waste_time():
use libc;
use log::info;
use ...
0
votes
0
answers
30
views
Profiling application using perf with clion docker toolchain
Clion offers a perf integration for profiling applications. Getting this to work when using a docker toolchain is not described online. Is it possible to do this, and how does one manage the different ...