- 25 Apr, 2017 4 commits
-
-
Hisham authored
-
Hisham Muhammad authored
update keymap in help
-
Hisham Muhammad authored
Initial addition of dragonflybsd (based on FreeBSD)
-
Hisham Muhammad authored
Enh: scripts/MakeHeader script
-
- 21 Apr, 2017 3 commits
-
-
Diederik de Groot authored
Only write a new .h file if something changed for the header file being created. This prevents a lot of recompilation during development
-
Diederik de Groot authored
-
Diederik de Groot authored
-
- 20 Apr, 2017 1 commit
-
-
Diederik de Groot authored
Note: dragonflybsd does not have 'jail_get' like freebsd does. It does however provide a sysctl "jail.list" which returns a list of all jails.
-
- 19 Apr, 2017 2 commits
-
-
Diederik de Groot authored
-
ryenus authored
-
- 29 Mar, 2017 2 commits
-
-
Hisham Muhammad authored
Add missing include
-
Hisham Muhammad authored
Add Comment[zh_CN] and GenericName[zh_CN] into htop.desktop
-
- 25 Mar, 2017 1 commit
-
-
coypoop authored
sys/time.h for struct timeval
-
- 23 Mar, 2017 1 commit
-
-
giwhub authored
-
- 16 Feb, 2017 2 commits
-
-
https://github.com/hishamhm/htopHisham authored
-
Hisham authored
Apparently invalid results can be returned by buggy drivers in old laptops, as reported by @thukydides. See #596.
-
- 04 Feb, 2017 2 commits
-
-
Hisham Muhammad authored
Issue #502 update Session ID column
-
Kamyar Rasta authored
-
- 31 Jan, 2017 1 commit
-
-
Kamyar Rasta authored
-
- 30 Dec, 2016 1 commit
-
-
Hisham Muhammad authored
Replace all uses of sprintf with snprintf
-
- 29 Dec, 2016 1 commit
-
-
Tomasz Kramkowski authored
In all the cases where sprintf was being used within htop, snprintf could have been used. This patch replaces all uses of sprintf with snprintf which makes sure that if a buffer is too small to hold the resulting string, the string is simply cut short instead of causing a buffer overflow which leads to undefined behaviour. `sizeof(variable)` was used in these cases, as opposed to `sizeof variable` which is my personal preference because `sizeof(variable)` was already used in one way or another in other parts of the code.
-
- 01 Oct, 2016 1 commit
-
-
Hisham authored
translate dev_t to major:minor on other platforms. Closes #316.
-
- 16 Sep, 2016 4 commits
-
-
https://github.com/hishamhm/htopHisham authored
-
Hisham authored
and change alignment of numbers.
-
Hisham Muhammad authored
Real-time signals support (kill command)
-
Hisham Muhammad authored
Real-time signals support (kill command)
-
- 14 Sep, 2016 1 commit
-
-
Explorer09 authored
SignalsPanel_new now fetches SIGRTMIN and SIGRTMAX and generates real- time signals entries at runtime. All signals between SIGRTMIN and SIGRTMAX are written in "SIGRTMIN+n" notation, per discussion in pull request #551. Signed-off-by: Kang-Che Sung <explorer09 @ gmail.com>
-
- 12 Sep, 2016 2 commits
-
-
https://github.com/hishamhm/htopHisham authored
-
Hisham authored
Courtesy to OpenWRT environments as requested by @champtar in #540.
-
- 06 Sep, 2016 2 commits
-
-
Hisham Muhammad authored
Fix column misalignment for priority -101 threads
-
Ivan Kozik authored
BFS-patched kernels can have kernel threads with priority -101. This change makes priority -101 display as "RT", just like priority -100. Related: https://github.com/hishamhm/htop/issues/314
-
- 30 Aug, 2016 4 commits
-
-
https://github.com/hishamhm/htopHisham authored
-
Hisham authored
Closes #546.
-
Hisham Muhammad authored
Mark signal tables 'const'
-
Explorer09 authored
Specifically, Platform_signals[] and Platform_numberOfSignals. Both are not supposed to be mutable. Marking them 'const' puts them into rodata sections in binary. And for Platform_numberOfSignals, this aids optimization (aids only Link Time Optimization for now). :) Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
-
- 24 Aug, 2016 2 commits
- 23 Aug, 2016 1 commit
-
-
Hisham authored
-
- 11 Aug, 2016 2 commits
-
-
Hisham Muhammad authored
Optimize Strings_startWith()
-
Explorer09 authored
Use strncmp() combined with a strlen() will give better performance than a strstr in worst case. Especially when the match prefix is a constant and not a variable. While we are at it, replace the match() function in linux/Battery.c, which uses a naive algorithm, with a macro that does better job by utilizing Strings_startWith(). $ gcc --version | head -n 1 gcc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4 $ uname -m x86_64 $ size htop.old htop.new text data bss dec hex filename 137929 15112 3776 156817 26491 htop.old 137784 15104 3776 156664 263f8 htop.new Signed-off-by: Kang-Che Sung <explorer09 @ gmail.com>
-