Milan
Milan
I'm running into an issue where I need to show part of the state tree in a root component, which means I need to bind a couple of cursors in...
Consider using the `bpf_probe_read_user` helper function within your bpf program. It is [recommended](https://lore.kernel.org/bpf/[email protected]/T/#t) to use this over `bpf_probe_read`. It is also recommended within the man pages: [`bpf-helpers(7)`](https://man7.org/linux/man-pages/man7/bpf-helpers.7.html)
A bpf program's fd can be useful to obtain relevant data such as memlock (like how it's done in bpftool). This change allows users to obtain the fd of a...
Specify which axis to resize on: ['both', 'x', 'y', 'none']
Really like this extension! The "Hidden domains: 10" text threw me off the first time I saw it because I currently only added 2 "domains" to my hide list. I...
It seems currently the struct generated from `#[derive(EnumIter)]` propagates the visibility from the original enum. Is it possible to have this configurable? This was mentioned in an [early comment](https://github.com/Peternator7/strum/issues/5#issuecomment-309054136) and...
Feature gate: `#![feature(unix_socket_abstract)]` This is a tracking issue for adding abstract namespace support for Unix domain sockets on Linux. Traditionally, Unix domain sockets (UDS) use a file to coordinate socket...
Possible to derive [Debug](https://doc.rust-lang.org/std/fmt/trait.Debug.html) trait output for some of the public-facing structs? Besides the ability to debug from the output, when we build higher-level structs that use libbpf-rs's types internally,...