BenBE
BenBE
Idea for a patch: ```diff diff --git a/Panel.c b/Panel.c index fd9de2b..831452f 100644 --- a/Panel.c +++ b/Panel.c @@ -278,7 +278,7 @@ void Panel_draw(Panel* this, bool focus) { } if (item.highlightAttr) {...
The issue with this patch is some runtime behaviour that's kinda nasty IMO: `A_BOLD` automatically means light colors, which reduces contrast quite a bit. In particular with dark gray on...
I think these two issues are unrelated to the feature request. Or am I missing something?
Can you press Shift+H (Toggle userland thread display) or Shift+K (Toggle kernel thread display) and check if this helps? Also disabling the "library size" column, mentioned in #1484 may help...
Without debug symbols the perf data is kinda hard to work with. Could you try to compile htop from source? ```console $ ./autogen.sh $ ./configure CFLAGS="-Og -g" $ make ```...
Thank you for these perf traces and the hint about the root/non-root performance difference. Though on their own these information only give a very broad sense, where the slowness may...
I wonder where the `mangle_path` stuff gets called from in the kernel. A wild guess would be something iterating directories, which would also fit with `filldir64`. Another observation is the...
The culprit seems to be somewhere in the procfs code in the handling of [`show_map_vma`](https://github.com/torvalds/linux/blob/38fec10eb60d687e30c8c6b5420d86e8149f7557/fs/proc/task_mmu.c#L325). This corresponds to any read of the contents in `/proc//maps` (or the task's ID remaps...
Would having separate packages `cmsis-svd-data-atmel`, `cmsis-svd-data-stm`, … feasible? This would allow `pip install cmsis-svd[stm]`, which would then also pull `cmsis-svd-data-stm`. But that would necessitate having several additional packages being created...
I'll look into this a bit closer later on, but from a quick glance I noticed two potential issues: 1. Downloading many files: Transferring a file with HTTP requires both...