Kernel: Separate out the symbol offsets in profile output

Instead of saying "main +39" and "main +57" etc, we now have a separate
field in /proc/profile for the offset-into-the-symbol.
This commit is contained in:
Andreas Kling 2019-12-12 21:59:47 +01:00
commit 0f393148da
Notes: sideshowbarker 2024-07-19 10:52:45 +09:00
5 changed files with 19 additions and 8 deletions

View file

@ -15,6 +15,7 @@ struct Sample {
i32 tid;
u64 timestamp;
u32 frames[max_stack_frame_count];
u32 offsets[max_stack_frame_count];
String symbolicated_frames[max_stack_frame_count];
};