# Valgrind suppression file for zenserver # # Usage: # valgrind --suppressions=.valgrind.supp --show-mismatched-frees=no \ # build/linux/x86_64/debug/zenserver --malloc=ansi # # --show-mismatched-frees=no is needed because EASTL's allocator uses # aligned new[] (via posix_memalign) but deallocates via unaligned # operator delete[]. Valgrind 3.22 reports this as an alignment mismatch # which cannot be suppressed via suppression files.