summaryrefslogtreecommitdiffstats
path: root/Macros.h
diff options
context:
space:
mode:
authorfraggerfox <santhosh.raju@gmail.com>2021-04-25 21:44:32 +0530
committerBenBE <BenBE@geshi.org>2021-06-26 12:18:37 +0200
commit2f5b3ef7337857e04cbb4287517fd51e58ee5beb (patch)
treea2efa0b4c6602d7a32102766570d8e0a27b66b69 /Macros.h
parente42ae55d691b0e2018d3569ae687cf0cda98c0f8 (diff)
Refactor saturatingSub() to be part of Macros.h
Diffstat (limited to 'Macros.h')
-rw-r--r--Macros.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Macros.h b/Macros.h
index 789b09b6..1fdfb1ed 100644
--- a/Macros.h
+++ b/Macros.h
@@ -69,4 +69,9 @@
#define IGNORE_WCASTQUAL_END
#endif
+/* This subtraction is used by NetBSD / OpenBSD for calculation of CPU usage items. */
+static inline unsigned long long saturatingSub(unsigned long long a, unsigned long long b) {
+ return a > b ? a - b : 0;
+}
+
#endif

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