Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/external/bsd/jemalloc/include/jemalloc/internal there is no ...
details: https://anonhg.NetBSD.org/src/rev/7d97637f5425
branches: trunk
changeset: 997858:7d97637f5425
user: christos <christos%NetBSD.org@localhost>
date: Fri Mar 29 13:04:00 2019 +0000
description:
there is no elifdef
diffstat:
external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (15 lines):
diff -r ada148db9236 -r 7d97637f5425 external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
--- a/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h Fri Mar 29 12:51:15 2019 +0000
+++ b/external/bsd/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h Fri Mar 29 13:04:00 2019 +0000
@@ -200,9 +200,9 @@
/* One page is 2^LG_PAGE bytes. */
#include <machine/vmparam.h>
-#ifdef PAGE_SHIFT
+#if defined(PAGE_SHIFT)
#define LG_PAGE PAGE_SHIFT
-#elifdef MAX_PAGE_SHIFT
+#elif defined(MAX_PAGE_SHIFT)
#define LG_PAGE MAX_PAGE_SHIFT
#else
#error "PAGE_SHIFT is not defined"
Home |
Main Index |
Thread Index |
Old Index