htop/openbsd
Explorer09 6dae8108f8 Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses.
With the CLAMP macro replacing the combination of MIN and MAX, we will
have at least two advantages:
1. It's more obvious semantically.
2. There are no more mixes of confusing uses like MIN(MAX(a,b),c) and
   MAX(MIN(a,b),c) and MIN(a,MAX(b,c)) appearing everywhere. We unify
   the 'clamping' with a single macro.
Note that the behavior of this CLAMP macro is different from
the combination `MAX(low,MIN(x,high))`.
* This CLAMP macro expands to two comparisons instead of three from
  MAX and MIN combination. In theory, this makes the code slightly
  smaller, in case that (low) or (high) or both are computed at
  runtime, so that compilers cannot optimize them. (The third
  comparison will matter if (low)>(high); see below.)
* CLAMP has a side effect, that if (low)>(high) it will produce weird
  results. Unlike MIN & MAX which will force either (low) or (high) to
  win. No assertion of ((low)<=(high)) is done in this macro, for now.

This CLAMP macro is implemented like described in glib
<http://developer.gnome.org/glib/stable/glib-Standard-Macros.html>
and does not handle weird uses like CLAMP(a++, low++, high--) .
2016-01-15 20:26:01 +08:00
..
Battery.c (Very) initial working OpenBSD port 2015-09-18 00:46:48 -04:00
Battery.h (Very) initial working OpenBSD port 2015-09-18 00:46:48 -04:00
OpenBSDCRT.c Fix spelling of "maintainer" 2016-01-02 12:11:26 -05:00
OpenBSDCRT.h Regenerate platform-dependent headers. 2015-10-19 17:22:54 -02:00
OpenBSDProcess.c Change some tabs to three spaces 2015-09-19 12:08:34 -04:00
OpenBSDProcess.h (Very) initial working OpenBSD port 2015-09-18 00:46:48 -04:00
OpenBSDProcessList.c Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses. 2016-01-15 20:26:01 +08:00
OpenBSDProcessList.h Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses. 2016-01-15 20:26:01 +08:00
Platform.c Add Platform_getProcessEnv 2015-12-03 22:23:40 +01:00
Platform.h OpenBSD fixes and updates 2016-01-02 11:57:53 -05:00