summaryrefslogtreecommitdiffstats
path: root/src/common/valgrind.h
blob: 1faa9cd85599e19a2ff68bf0286c6f66cbe605a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab

#ifndef CEPH_VALGRIND_H
#define CEPH_VALGRIND_H

#include "acconfig.h"

#if defined(HAVE_VALGRIND_HELGRIND_H) && !defined(NDEBUG)
  #include <valgrind/helgrind.h>
#else
  #define ANNOTATE_HAPPENS_AFTER(x)             (void)0
  #define ANNOTATE_HAPPENS_BEFORE_FORGET_ALL(x) (void)0
  #define ANNOTATE_HAPPENS_BEFORE(x)            (void)0

  #define ANNOTATE_BENIGN_RACE_SIZED(address, size, description) (void)0
#endif

#endif // CEPH_VALGRIND_H