Levi Zim
Levi Zim
As an improvement over #115, we can show linux capabilities. From `proc/??/status`: ``` CapInh: 0000000800000000 CapPrm: 0000000000000000 CapEff: 0000000000000000 CapBnd: 000001ffffffffff CapAmb: 0000000000000000 ```
We are already collecting Linux namespaces in eBPF mode. It's more user friendly to show the container name.
With the opentelemetry still a WIP, we still have time to explore other formats. One notable drawback of the opentelemetry ecosystem is that it appears it is not designed for...
We could add a new cli option that enables capture and symbolize stack traces when exec happens. Or when a breakpoint is hit in TUI mode, here we could add...
First, thanks for your effort into making it work on riscv64. I am using the latest release(v2.321.0) on Arch Linux RISC-V. I noticed that while it works fine after setup,...
In a regular dependency bump, I walk into a breaking change of tui-popup in a semver compatible release: https://github.com/kxxt/tracexec/actions/runs/19390964475/job/55484373058?pr=127 It is caused by https://github.com/joshka/tui-widgets/commit/c51ac3cd44a3e55fd1ce83622203716f218a9f6f Could you yank v0.6.1 and v0.6.2...
Backport two V8 commits to fix a crash found while building Adguard Home using webpack https://github.com/riscv-forks/electron/issues/9. This is only needed for v24.x. The PR for the main branch(https://github.com/nodejs/node/pull/58746) has missed...
Currently, there is no way to add custom derives to libbpf-cargo generated types. My intended usage of this is to derive https://docs.rs/zerocopy/latest/zerocopy/trait.FromBytes.html for some generated structs to access them(which could...
While RISC-V is still an unofficial platform, there are lots of interest to push it to experimental tier(#2876) . This issue tracks bugs that are closely related to linux riscv64...
Previously the cmake file only sets `-std=gnu99` when it is on x86(-64), which causes compilation failure on other architectures when gcc is used. GCC currently defaults to `-std=gnu23`, which would...