summaryrefslogtreecommitdiffstats
path: root/dragonflybsd
AgeCommit message (Collapse)Author
2020-09-09Switch variable/field naming from WhiteList to MatchListNathan Scott
2020-09-09Consolidate repeated macro definitions into one headerNathan Scott
The MIN, MAX, CLAMP, MINIMUM, and MAXIMUM macros appear throughout the codebase with many re-definitions. Make a single copy of each in a common header file, and use the BSD variants of MINIMUM/MAXIMUM due to conflicts in the system <sys/param.h> headers.
2020-09-08Further, minor cleanups to headers post-MakeHeadersNathan Scott
Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
2020-09-03Axe automated header generation.Zev Weiss
Reasoning: - implementation was unsound -- broke down when I added a fairly basic macro definition expanding to a struct initializer in a *.c file. - made it way too easy (e.g. via otherwise totally innocuous git commands) to end up with timestamps such that it always ran MakeHeader.py but never used its output, leading to overbuild noise when running what should be a null 'make'. - but mostly: it's just an awkward way of dealing with C code.
2020-08-22Updates to project URLs in docs and embedded in source codeNathan Scott
2020-08-21Remove trailing whitespacesChristian Göttsche
2020-08-20Merge branch 'hishamhm-pull-932'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-960'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-904'Nathan Scott
2019-10-31Clean up existing whitespaceDaniel Flanagan
2019-08-10Show N/A on unsupported platforms instead of 0KHzArnavion
2019-04-17Truncate overwide jail names on BSD.Robert Crowston
2018-10-07Widen ST_UID (UID) column to 5 chars to allow UIDs > 9999 without breaking ↵Daniel Lange
alignment Issue Github #841, Debian bug #910492
2017-07-27Security review: check results of snprintf.Hisham Muhammad
Calls marked with xSnprintf shouldn't fail. Abort program cleanly if any of them does.
2017-07-07DragonFlyBSD PID_MAX is 999999.Explorer09
See DragonFlyBSD source "sys/sys/proc.h". Fixes #646
2017-04-21Enh: Add support for backtrace using execinfoDiederik de Groot
2017-04-21Fix: TreeViewDiederik de Groot
2017-04-20implement: readJailNameDiederik de Groot
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.
2017-04-19Initial addition of dragonflybsd (based on FreeBSD)Diederik de Groot