summaryrefslogtreecommitdiff
path: root/src/frames.h
diff options
context:
space:
mode:
authorChris Wilson <ickle@cube.localdomain>2007-11-29 20:45:38 +0000
committerChris Wilson <ickle@cube.localdomain>2007-11-29 20:45:38 +0000
commit790239953ae11e92990df88defd20725a448893c (patch)
tree85962d1fcbac02c9b7c9bc03dacb85ddd5ba04d2 /src/frames.h
parent24829c65acd4f52654570de39588c47a5e60f079 (diff)
64bit corrections.
Diffstat (limited to 'src/frames.h')
-rw-r--r--src/frames.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/frames.h b/src/frames.h
index 6697ec0..821d24c 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -7,7 +7,7 @@ G_BEGIN_DECLS
typedef struct _frame Frame;
struct _frame {
- guint ip;
+ gulong ip;
const gchar *function;
const gchar *object;
const gchar *file;
@@ -47,26 +47,26 @@ struct _frames {
void
frames_add (Frames *frames,
- guint ip,
+ gulong ip,
const gchar *function,
const gchar *object,
const gchar *file,
const gchar *directory,
gint line);
gboolean
-frames_has_ip (Frames *frames, guint ip);
+frames_has_ip (Frames *frames, gulong ip);
gboolean
-frames_is_alloc_fn (Frames *frames, guint ip);
+frames_is_alloc_fn (Frames *frames, gulong ip);
Frame *
-frames_get (Frames *frames, guint ip);
+frames_get (Frames *frames, gulong ip);
guint
frames_get_unique_count (Frames *frames);
gchar *
-frames_get_source_path (Frames *frames, guint ip);
+frames_get_source_path (Frames *frames, gulong ip);
gboolean
frames_add_alloc_fn (Frames *frames, const gchar *pattern, GError **error);