summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Really tell gcc to ignore return value of fscanfChristian Göttsche2020-08-281-1/+1
| | |
| * | Convert hwlock CI run to a full featured oneChristian Göttsche2020-08-281-4/+4
| | |
| * | Print configured stateChristian Göttsche2020-08-281-0/+17
| | |
| * | Improve indentChristian Göttsche2020-08-281-6/+5
| | |
| * | Drop configure option --enable-procChristian Göttsche2020-08-282-8/+1
| |/ | | | | | | | | Move to HTOP_LINUX, as --enable-proc implies my_htop_platform=linux, and the Linux features do not work without a proc fs.
* | Merge branch 'master' of github.com:htop-dev/htopNathan Scott2020-08-312-5/+4
|\ \
| * \ Merge branch 'oom' of https://github.com/cgzones/htopDaniel Lange2020-08-312-5/+4
| |\ \ | | | | | | | | | | | | Closes: #18, #22
| | * | Improve OOM outputChristian Göttsche2020-08-282-5/+4
| | |/ | | | | | | | | | | | | | | | * Fix sort by adding cast * Shrink column size to 4 * Drop unnecessary maximum field width specifier in sscanf
* | | Merge branch 'cov_fixes' of https://github.com/cgzones/htop into ↵Nathan Scott2020-08-312-8/+9
|\ \ \ | |/ / |/| | | | | cgzones-cov_fixes
| * | Check btime sscanf parse from /proc/statChristian Göttsche2020-08-281-1/+2
| | | | | | | | | | | | Found by Coverity
| * | Avoid use of uninitialized variablesChristian Göttsche2020-08-281-3/+3
| | | | | | | | | | | | Found by Coverity
| * | Ignore sscanf return value of /proc/statChristian Göttsche2020-08-281-2/+2
| | | | | | | | | | | | Found by Coverity
| * | Fail on out-of-range CPU numberChristian Göttsche2020-08-281-1/+1
| | | | | | | | | | | | Found by Coverity
| * | Ignore wmove return valueChristian Göttsche2020-08-281-1/+1
| |/ | | | | | | Found by Coverity
* | Merge branch 'Ckath-vim_mode_setting'Nathan Scott2020-08-311-0/+1
|\ \
| * | Merge branch 'vim_mode_setting' of https://github.com/Ckath/htop into ↵Nathan Scott2020-08-311-0/+1
|/| | | | | | | | | | | Ckath-vim_mode_setting
| * | add toggle for vim mode in optionsckath2020-08-291-0/+1
| |/
* | Simplify the --version output, old dates are confusing peopleNathan Scott2020-08-311-4/+2
| | | | | | | | | | | | Drop the copyright notice from the version output as a number of people seem to be confused by what this means, and we can do without all the (well intentioned) bug reports.
* | Add a badge/link to the released source tarballsNathan Scott2020-08-311-0/+1
|/
* Merge pull request #14 from zdykstra/masterNathan Scott2020-08-281-2/+1
|\ | | | | Normalize ZFS ARC caption
| * Normalize ZFS ARC captionZach Dykstra2020-08-281-2/+1
| | | | | | | | | | Other captions take the form of LABEL:<space>. This moves the uncompressed ZFS ARC caption into the same style.
* | Increae the size of sysfs power supply path buffersNathan Scott2020-08-281-2/+2
|/ | | | Resolves https://github.com/htop-dev/htop/issues/15
* Update link to Coverity project, still pending.Nathan Scott2020-08-271-1/+1
|
* Merge branch 'bertwesarg-affinity-fix-panel-width'3.0.0Nathan Scott2020-08-272-1/+4
|\
| * fix width of `AffinitPanel`Bert Wesarg2020-08-262-1/+4
|/ | | | | | The panel size of 15 includes the gap to the next panel, thus use 14 as the minimum size and let the caller of `AffinityPanel_new` handle the gap.
* Update changelog with Berts latest addition3.0.0rc3Nathan Scott2020-08-261-0/+2
|
* Merge branch 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott2020-08-2614-63/+529
| | | | bertwesarg-ci-hwloc-job
* Merge branch 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott2020-08-262-1/+17
|\ | | | | | | bertwesarg-ci-hwloc-job
| * CI: Add a HWLOC enabled jobBert Wesarg2020-08-251-0/+15
| |
| * Do not include the generated `config.h` header into the packageBert Wesarg2020-08-251-1/+2
| |
* | Merge branch 'ci2' of https://github.com/cgzones/htop into cgzones-ci2Nathan Scott2020-08-2612-41/+60
|\ \
| * | ci: add clang buildChristian Göttsche2020-08-251-1/+23
| | |
| * | Avoid shadowing warningsChristian Göttsche2020-08-254-27/+27
| | |
| * | MakeHeader.py.in: remove unused importChristian Göttsche2020-08-251-1/+1
| | |
| * | MakeHeader.py.in: remove executable bitChristian Göttsche2020-08-251-0/+0
| | |
| * | Avoid discarding const qualifiersChristian Göttsche2020-08-254-6/+6
| | |
| * | Avoid string overflow warningChristian Göttsche2020-08-251-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use xStrdup instead of xMallow and strncpy StringUtils.c: In function ‘String_split’: StringUtils.c:86:7: error: ‘strncpy’ specified bound depends on the length of the source argument [-Werror=stringop-overflow=] 86 | strncpy(token, s, size + 1); | ^ StringUtils.c:84:18: note: length computed here 84 | int size = strlen(s); | ^
| * | Avoid string overflow warningChristian Göttsche2020-08-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enough memory is allocated. Header.c: In function ‘Header_readMeterName’: Header.c:157:4: error: ‘strncpy’ specified bound depends on the length of the source argument [-Werror=stringop-overflow=] 157 | strncpy(name, Meter_name(meter), nameLen); | ^ Header.c:154:18: note: length computed here 154 | int nameLen = strlen(Meter_name(meter)); | ^
| * | Avoid conversion warningChristian Göttsche2020-08-251-1/+1
| |/ | | | | | | | | | | linux/Platform.c:47:90: error: implicit conversion from ‘enum LinuxProcessFields’ to ‘enum ProcessFields’ [-Werror=enum-conversion] 47 | ProcessField Platform_defaultFields[] = { PID, USER, PRIORITY, NICE, M_SIZE, M_RESIDENT, M_SHARE, STATE, PERCENT_CPU, PERCENT_MEM, TIME, COMM, 0 }; |
* / Fix out-of-tree buildsBert Wesarg2020-08-251-1/+1
|/
* Fix in AC_CONFIG_FILES, try #2Daniel Lange2020-08-241-1/+2
|
* Nope, configure works but make breaks.Daniel Lange2020-08-241-1/+1
| | | | This reverts commit dad62b6c9e8a9e962b31175d4a768b37e1f8f3ec.
* Put Makeheader.py.in into AC_CONFIG_FILESDaniel Lange2020-08-241-1/+1
|
* Cleanup unused CI build notes and whitespaceNathan Scott2020-08-241-12/+0
|
* Generate an appropriate shebang line for MakeHeader script3.0.0rc2Nathan Scott2020-08-233-2/+6
| | | | | | | Use configure.ac to handle platform differences where some build hosts have only a python3, or only python, binary. Related to https://github.com/htop-dev/htop/pull/6
* Revert "MakeHeader.py: use python3 shebang"Nathan Scott2020-08-231-2/+2
| | | | | This reverts commit 40ac7a88af5a2c7c0d03ca4ddb09cde01f7e80c5. as it causes build failure on non-python3 platforms.
* Updates to project URLs in docs and embedded in source codeNathan Scott2020-08-225-41/+20
|
* Update header files to match whitespace changes in source filesNathan Scott2020-08-227-7/+1
|
* Merge branch 'ginggs-patch-1'Daniel Lange2020-08-221-11/+0
|\
| * Merge branch 'patch-1' of https://github.com/ginggs/htop-1 into ginggs-patch-1Daniel Lange2020-08-221-11/+0
|/|

© 2014-2024 Faster IT GmbH | imprint | privacy policy