From: Jim Warner Date: Sat, 11 Feb 2012 07:01:01 +0000 (-0600) Subject: top: isolate #defines actually present in confiure.ac X-Git-Tag: v3.3.3~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4dac0dfeb189a6ab2b69ea533b4abc05019160be;p=procps-ng top: isolate #defines actually present in confiure.ac All top.h defines were lumped together as: 'Development/Debugging defines' This commit establishes this new category: 'Defines represented in configure.ac' And that new category now contains OOMEM_ENABLE, which enables the SuSE out-of-memory additions Signed-off-by: Jim Warner --- diff --git a/top/top.h b/top/top.h index 6c04d36d..a2751109 100644 --- a/top/top.h +++ b/top/top.h @@ -22,6 +22,9 @@ #include "../proc/readproc.h" + /* Defines represented in configure.ac ----------------------------- */ +//#define OOMEM_ENABLE /* enable the SuSE out-of-memory additions */ + /* Development/Debugging defines ----------------------------------- */ //#define ATEOJ_RPTHSH /* report on hash specifics, at end-of-job */ //#define ATEOJ_RPTSTD /* report on misc stuff, at end-of-job */ @@ -31,7 +34,6 @@ //#define EQUCOLHDRYES /* yes, do equalize column header lengths */ //#define OFF_HST_HASH /* use BOTH qsort+bsrch vs. hashing scheme */ //#define OFF_STDIOLBF /* disable our own stdout _IOFBF override */ -//#define OOMEM_ENABLE /* enable the SuSE out-of-memory additions */ //#define PRETEND2_5_X /* pretend we're linux 2.5.x (for IO-wait) */ //#define PRETEND4CPUS /* pretend we're smp with 4 ticsers (sic) */ //#define PRETENDNOCAP /* use a terminal without essential caps */