Changeset 609 for branches/GNU/src/binutils/gprof/call_graph.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/gprof/call_graph.c
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r608 r609 1 1 /* call_graph.c - Create call graphs. 2 2 3 Copyright 2000, 2001 Free Software Foundation, Inc.3 Copyright 2000, 2001 Free Software Foundation, Inc. 4 4 5 5 This file is part of GNU Binutils. … … 21 21 22 22 23 24 25 26 23 27 #include "cg_arcs.h" 24 28 #include "call_graph.h" … … 26 30 #include "gmon_io.h" 27 31 #include "gmon_out.h" 28 #include "symtab.h"29 32 #include "sym_ids.h" 30 33 31 extern void 32 DEFUN (cg_tally, (from_pc, self_pc, count), 33 bfd_vma from_pc AND bfd_vma self_pc AND unsigned long count) 34 void 35 cg_tally (from_pc, self_pc, count) 36 bfd_vma from_pc; 37 bfd_vma self_pc; 38 unsigned long count; 34 39 { 35 40 Sym *parent; … … 77 82 78 83 void 79 DEFUN (cg_read_rec, (ifp, filename), FILE * ifp AND CONST char *filename) 84 cg_read_rec (ifp, filename) 85 FILE *ifp; 86 const char *filename; 80 87 { 81 88 bfd_vma from_pc, self_pc; … … 104 111 105 112 void 106 DEFUN (cg_write_arcs, (ofp, filename), FILE * ofp AND const char *filename) 113 cg_write_arcs (ofp, filename) 114 FILE *ofp; 115 const char *filename; 107 116 { 108 117 Arc *arc; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
