aboutsummaryrefslogtreecommitdiff
path: root/gprof/cg_arcs.h
diff options
context:
space:
mode:
Diffstat (limited to 'gprof/cg_arcs.h')
-rw-r--r--gprof/cg_arcs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gprof/cg_arcs.h b/gprof/cg_arcs.h
index b9c3a36..caa0197 100644
--- a/gprof/cg_arcs.h
+++ b/gprof/cg_arcs.h
@@ -15,7 +15,7 @@ typedef struct arc
{
Sym *parent; /* source vertice of arc */
Sym *child; /* dest vertice of arc */
- int count; /* # of calls from parent to child */
+ unsigned long count; /* # of calls from parent to child */
double time; /* time inherited along arc */
double child_time; /* child-time inherited along arc */
struct arc *next_parent; /* next parent of CHILD */
@@ -27,7 +27,7 @@ Arc;
extern unsigned int num_cycles; /* number of cycles discovered */
extern Sym *cycle_header; /* cycle headers */
-extern void arc_add PARAMS ((Sym * parent, Sym * child, int count));
+extern void arc_add PARAMS ((Sym * parent, Sym * child, unsigned long count));
extern Arc *arc_lookup PARAMS ((Sym * parent, Sym * child));
extern Sym **cg_assemble PARAMS ((void));
extern Arc **arcs;