Kyle Huey

Results 36 issues of Kyle Huey

It seems to report multiple paths like so: root_1 -> stuff -> common_subtree root_2 -> moar_stuff -> common_subtree root_3 -> even_moar_stuff -> common_subtree It would be really nice if we...

Provide a script that takes two logs, runs the census on both of them, and diffs the result. This will be useful for investigating increases in memory consumption over time.

`emulate_async_signal` can be slow if the asynchronous signal to be delivered happens in a tight loop. (See #3650 for an example). Instead of using a software breakpoint and evaluating conditions...

@pnkfelix reports that attempting to record valgrind with rr triggers an internal rr assertion. After a brief investigation, valgrind is unmapping librrpreload.so at https://sourceware.org/git/?p=valgrind.git;a=blob;f=coregrind/m_initimg/initimg-linux.c;h=4da9a8b9760b42f98e6634ea9d83954d9caf1d0b;hb=HEAD#l913. This then causes AutoRemoteSyscalls to die...

In `environment` sections you can specify valueless keys like ```yaml environment: - FOO - BAR ``` And docker-compose will pick up the relevant values on the machine compose runs on....

So I have a program that uses x11rb to implement xtrace-like functionality on copies of the data that flows over the x11 socket. When I parse messages I have copies...

Now that the fixed length request is built out of a Vec, serialize_into could be used to fill it out. For efficiency you'd ideally preallocate the Vec's buffer with a...

enhancement
P5

https://rust-lang.github.io/rust-clippy/master/index.html#derive_partial_eq_without_eq This will trigger a lint for each use of the header! macro by hyperx users.

Starting in kernel 6.10 BPF filters can choose whether or not to trigger the SIGIO behavior for a perf event that becomes readable. We combine that with a hardware breakpoint...

glibc 2.26 switches from using open(2) to openat(2). And now everyone on earth with a seccomp filter gets to update it :)