[Zrouter-src-freebsd] ZRouter.org: push to FreeBSD HEAD tree
zrouter-src-freebsd at zrouter.org
zrouter-src-freebsd at zrouter.org
Sun Apr 29 17:54:27 UTC 2012
details: http://zrouter.org/hg/FreeBSD/head//rev/7d0c8bc7dd1c
changeset: 476:7d0c8bc7dd1c
user: Aleksandr Rybalko <ray at ddteam.net>
date: Sun Apr 29 20:53:21 2012 +0300
description:
MALLOC_PRODUCTION break build in another place, so exclude zero checking
assert for now.
diffstat:
head/contrib/jemalloc/src/arena.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diffs (17 lines):
diff -r ebc3e50e485a -r 7d0c8bc7dd1c head/contrib/jemalloc/src/arena.c
--- a/head/contrib/jemalloc/src/arena.c Fri Apr 27 17:39:34 2012 +0300
+++ b/head/contrib/jemalloc/src/arena.c Sun Apr 29 20:53:21 2012 +0300
@@ -175,11 +175,13 @@
static inline void
arena_chunk_validate_zeroed(arena_chunk_t *chunk, size_t run_ind)
{
+#if 0
size_t i;
UNUSED size_t *p = (size_t *)((uintptr_t)chunk + (run_ind << LG_PAGE));
for (i = 0; i < PAGE / sizeof(size_t); i++)
assert(p[i] == 0);
+#endif
}
static void
More information about the Zrouter-src-freebsd
mailing list