summaryrefslogtreecommitdiffstats
path: root/src/debug/sysv-heap.cpp
blob: 7d21c02b9480e0156b9865a88dffc5d58fe49e8a (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * Inkscape::Debug::SysVHeap - malloc() statistics via System V interface
 *
 * Authors:
 *   MenTaLguY <mental@rydia.net>
 *
 * Copyright (C) 2005 MenTaLguY
 *
 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"  // only include where actually required!
#endif

#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif

#include "debug/sysv-heap.h"

namespace Inkscape {
namespace Debug {

int SysVHeap::features() const {
#ifdef HAVE_MALLINFO
    return SIZE_AVAILABLE | USED_AVAILABLE;
#else
    return 0;
#endif
}

Heap::Stats SysVHeap::stats() const {
    Stats stats = { 0, 0 };

#ifdef HAVE_MALLINFO
#ifdef HAVE_MALLINFO2
    struct mallinfo2 info=mallinfo2();
#else
    struct mallinfo info=mallinfo();
#endif

#ifdef HAVE_STRUCT_MALLINFO_USMBLKS
    stats.size += info.usmblks;
    stats.bytes_used += info.usmblks;
#endif

#ifdef HAVE_STRUCT_MALLINFO_FSMBLKS
    stats.size += info.fsmblks;
#endif

#ifdef HAVE_STRUCT_MALLINFO_UORDBLKS
    stats.size += info.uordblks;
    stats.bytes_used += info.uordblks;
#endif

#ifdef HAVE_STRUCT_MALLINFO_FORDBLKS
    stats.size += info.fordblks;
#endif

#ifdef HAVE_STRUCT_MALLINFO_HBLKHD
    stats.size += info.hblkhd;
    stats.bytes_used += info.hblkhd;
#endif

#endif

    return stats;
}

}
}

/*
  Local Variables:
  mode:c++
  c-file-style:"stroustrup"
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
  indent-tabs-mode:nil
  fill-column:99
  End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :