Code

82fe9b7696edc62a213fc26c2fcba3833169a860
[inkscape.git] / src / debug / sysv-heap.h
1 /*
2  * Inkscape::Debug::SysVHeap - malloc() statistics via System V interface
3  *
4  * Authors:
5  *   MenTaLguY <mental@rydia.net>
6  *
7  * Copyright (C) 2005 MenTaLguY
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef SEEN_INKSCAPE_DEBUG_SYSV_HEAP_H
13 #define SEEN_INKSCAPE_DEBUG_SYSV_HEAP_H
15 #include "debug/heap.h"
17 namespace Inkscape {
18 namespace Debug {
20 class SysVHeap : public Heap {
21 public:
22     SysVHeap() {}
23     
24     int features() const;
26     Util::ptr_shared<char> name() const {
27         return Util::share_static_string("standard malloc()");
28     }
29     Stats stats() const;
30     void force_collect() {}
31 };
33 }
34 }
36 #endif
38 /*
39   Local Variables:
40   mode:c++
41   c-file-style:"stroustrup"
42   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
43   indent-tabs-mode:nil
44   fill-column:99
45   End:
46 */
47 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :