- 18 Feb, 2018 1 commit
-
-
Hisham Muhammad authored
I was occasionally passing negative values to size_t. Plus, this better reflects the intent of the variant argument. Reported by Coverity: https://scan8.coverity.com/reports.htm#v13253/p10402/fileInstanceId=22093891&defectInstanceId=7543346&mergedDefectId=174179&fileStart=251&fileEnd=500
-
- 27 Jul, 2017 1 commit
-
-
Hisham Muhammad authored
Calls marked with xSnprintf shouldn't fail. Abort program cleanly if any of them does.
-
- 30 Aug, 2016 1 commit
-
-
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>
-
- 02 Feb, 2016 1 commit
-
-
Hisham authored
-
- 15 Jan, 2016 1 commit
-
-
Explorer09 authored
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--) .
-
- 03 Dec, 2015 1 commit
-
-
Michael Klein authored
- currently implemented for darwin and linux
-
- 23 Oct, 2015 1 commit
-
-
Hisham Muhammad authored
-
- 06 Oct, 2015 3 commits
-
-
Martin "eto" Misuth authored
-
Martin "eto" Misuth authored
FreeBSD Linux Other platforms will have it undefined for now.
-
Hisham Muhammad authored
Implementations for Linux (tested) and FreeBSD (still untested, thanks to @etosan for providing the table). Darwin and OpenBSD(ping @mmcco) builds should be broken now, pending their own tables.
-
- 15 May, 2015 1 commit
-
-
Christian Hesse authored
gcc gives warnings like this: warning: ignoring return value of ‘fscanf’, declared with attribute warn_unused_result Assign value to a variable, cast to (void) to discard it.
-
- 23 Mar, 2015 1 commit
-
-
Hisham Muhammad authored
-
- 17 Mar, 2015 1 commit
-
-
Hisham Muhammad authored
-
- 16 Mar, 2015 2 commits
-
-
Hisham Muhammad authored
-
Hisham Muhammad authored
-
- 15 Mar, 2015 1 commit
-
-
Hisham Muhammad authored
-
- 23 Feb, 2015 2 commits
-
-
Hisham Muhammad authored
-
Hisham Muhammad authored
Conflicts: Process.c Process.h ProcessList.c ScreenManager.c linux/LinuxProcessList.c
-
- 20 Feb, 2015 1 commit
-
-
Hisham Muhammad authored
-
- 23 Jan, 2015 1 commit
-
-
Hisham Muhammad authored
Kinda runs, but functionality from the original main loop is still missing. Patience.
-
- 22 Jan, 2015 1 commit
-
-
Hisham Muhammad authored
This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
-
- 27 Nov, 2014 6 commits
-
-
Hisham Muhammad authored
-
Hisham Muhammad authored
-
Hisham Muhammad authored
-
Hisham Muhammad authored
-
Hisham Muhammad authored
-
Hisham Muhammad authored
Set up environment to move other meters.
-
- 24 Nov, 2014 2 commits
-
-
Hisham Muhammad authored
-
Hisham Muhammad authored
-