summaryrefslogtreecommitdiffstats
path: root/document/src/tests/heapdebuggerother.cpp
blob: 0aeaad57de2b5b62e026a61844222cad5c549cc6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/*
 * Author: Ove Martin Malm
 */

#include <stdlib.h>
#include "heapdebugger.h"

// Not implemented
void enableHeapUsageMonitor(int param)
{
  (void)param;

}

// Not implemented
extern size_t getHeapUsage(void)
{
  return 0;
}

// Not implemented
void enableHeapCorruptCheck(int param)
{
  (void)param;

}

// Not implemented
void enableMCheck(void)
{
}

// Not implemented
void checkHeapNow(void)
{
}