about summary refs log tree commit diff homepage
path: root/include/klee/System/MemoryUsage.h
blob: 3fb75db6edc11f05068792af5d7862cda504038d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//===-- MemoryUsage.h -------------------------------------------*- C++ -*-===//
//
//                     The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef KLEE_MEMORYUSAGE_H
#define KLEE_MEMORYUSAGE_H

#include <cstddef>

namespace klee {
  namespace util {
    /// Get total malloc usage in bytes
    size_t GetTotalMallocUsage();
  }
}

#endif /* KLEE_MEMORYUSAGE_H */