uftrace 0.15.1-1build1 source package in Ubuntu

Changelog

uftrace (0.15.1-1build1) noble; urgency=medium

  * No-change rebuild with Python 3.12 as default

 -- Graham Inggs <email address hidden>  Fri, 19 Jan 2024 21:02:38 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Noble
Original maintainer:
paul cannon
Architectures:
amd64 arm64 i386 riscv64
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
uftrace_0.15.1.orig.tar.gz 1.1 MiB 5c427852c7c63ffecbf343836f0e5409dbf4f33b612843f2b0fd254f33a749fd
uftrace_0.15.1-1build1.debian.tar.xz 8.5 KiB b75437b0dd7a0a32bda40420160ef3b9fcca86fdb58f623677eeab0b54aaa131
uftrace_0.15.1-1build1.dsc 2.0 KiB cddf68cbd68857b63f8a926cbc38e125f1be3ef6be400b646ee0fa92c2587f16

View changes file

Binary packages built by this source

uftrace: Traces and analyzes execution of programs written in C/C++

 The uftrace tool is intended for tracing and analyzing the execution of
 programs written in C or C++. It was heavily inspired by the ftrace framework
 of the Linux kernel (especially the function graph tracer) and supports
 userspace programs. It supports various kinds of commands and filters to help
 analysis of the program's execution and performance.
 .
 It traces each function in the executable and shows time durations. It can
 also trace external library calls - but usually only entry and exit are
 supported. It is also possible to trace other (nested) external library calls
 and/or internal function calls in the library call.
 .
 It can show detailed execution flow at function level, and report which
 function has the highest overhead. It also shows various information
 related to the execution environment.
 .
 You can setup filters to exclude or include specific functions when tracing.
 In addition, function arguments and return values can be saved and shown
 later.
 .
 The uftrace tool supports multi-process and/or multi-threaded applications.
 It can also trace kernel functions as well, with root privileges and if the
 system enables the function graph tracer in the kernel
 (CONFIG_FUNCTION_GRAPH_TRACER=y).

uftrace-dbgsym: debug symbols for uftrace