blob: 5a178407c0f53b1207d69c9284cb095e960dc637 (
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
85
86
87
88
89
90
91
92
93
94
|
/*
This file is part of odin, a memory profiler with fragmentation analysis.
Copyright (C) 2007 Chris Wilson <chris@chris-wilson.co.uk>
odin is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
odin is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with odin. If not, see <http://www.gnu.org/licenses/>/
The GNU General Public License is contained in the file COPYING.
*/
#ifndef CLIENT_H
#define CLIENT_H
#include <gtk/gtk.h>
#include "frames.h"
#include "shared-objects.h"
G_BEGIN_DECLS
typedef struct _string String;
struct _string {
String *ht_next;
guint hash, len;
gchar str[0];
};
struct _client {
enum {
LWP,
VALGRIND
} type;
gboolean active;
gchar *name;
GPid pid;
gboolean terminated;
guint time;
guint last;
gboolean update;
Allocator *allocators;
struct {
guint size;
guint nnodes;
Allocator **nodes;
} allocator_by_addr;
Block *blocks;
struct {
guint size;
guint nnodes;
Block **nodes;
} block_by_addr;
SharedObjects objects;
Frames frames;
CallGraphStore *call_graph;
GArray *events;
struct {
guint size;
guint nnodes;
String **nodes;
} strings;
Chunk *perm_chunks;
Chunk *block_chunks;
Block *block_free_list;
GSource *timeout;
};
gpointer
client_perm_alloc (Client *client, guint size);
const gchar *
client_add_string (Client *client, const gchar *str);
#endif /* CLIENT_H */
|