Changeset 609 for branches/GNU/src/binutils/gprof/symtab.h
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/gprof/symtab.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* symtab.h 2 2 3 Copyright 2000, 2001 Free Software Foundation, Inc.3 Copyright 2000, 2001, 2002 Free Software Foundation, Inc. 4 4 5 5 This file is part of GNU Binutils. … … 23 23 #define symtab_h 24 24 25 #include "bfd.h"26 #include "gprof.h"27 28 25 /* For a profile to be intelligible to a human user, it is necessary 29 26 to map code-addresses into source-code information. Source-code … … 33 30 The symbol table is used to map addresses into source-code 34 31 information. */ 35 36 #include "source.h"37 32 38 33 #define NBBS 10 … … 84 79 int index; /* Index in the graph list. */ 85 80 int top_order; /* Graph call chain top-sort order. */ 86 b oolprint_flag; /* Should this be printed? */81 bfd_boolean print_flag; /* Should this be printed? */ 87 82 struct 88 83 { … … 120 115 extern void sym_init PARAMS ((Sym *)); 121 116 extern void symtab_finalize PARAMS ((Sym_Table *)); 117 #ifdef DEBUG 118 extern Sym *dbg_sym_lookup PARAMS ((Sym_Table *, bfd_vma)); 119 #endif 122 120 extern Sym *sym_lookup PARAMS ((Sym_Table *, bfd_vma)); 123 121 extern void find_call PARAMS ((Sym *, bfd_vma, bfd_vma)); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.