klee
MemoryUsage.h
Go to the documentation of this file.
1//===-- MemoryUsage.h -------------------------------------------*- C++ -*-===//
2//
3// The KLEE Symbolic Virtual Machine
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef KLEE_MEMORYUSAGE_H
11#define KLEE_MEMORYUSAGE_H
12
13#include <cstddef>
14
15namespace klee {
16 namespace util {
18 size_t GetTotalMallocUsage();
19 }
20}
21
22#endif /* KLEE_MEMORYUSAGE_H */
size_t GetTotalMallocUsage()
Get total malloc usage in bytes.
Definition: MemoryUsage.cpp:87
Definition: main.cpp:291