[BACK]Return to gprof.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / gprof

Diff for /src/usr.bin/gprof/gprof.h between version 1.11 and 1.12

version 1.11, 2004/07/20 18:20:55 version 1.12, 2006/03/25 19:06:36
Line 228 
Line 228 
     /*      /*
      *  function declarations       *  function declarations
      */       */
 void            addarc();  void            addarc(nltype *, nltype *, long);
 int             addcycle(arctype **, arctype **);  int             addcycle(arctype **, arctype **);
 void            addlist(struct stringlist *listp, char *funcname);  void            addlist(struct stringlist *, char *);
 int             arccmp();  int             arccmp(arctype *, arctype *);
 arctype         *arclookup();  arctype         *arclookup(nltype *, nltype *);
 void            asgnsamples();  void            asgnsamples(void);
 void            alignentries();  void            alignentries(void);
 void            printblurb();  void            printblurb(const char *);
 int             cycleanalyze(void);  int             cycleanalyze(void);
 void            cyclelink(void);  void            cyclelink(void);
 void            cycletime(void);  void            cycletime(void);
 void            compresslist(void);  void            compresslist(void);
 int             descend(nltype *node, arctype **stkstart, arctype **stkp);  int             descend(nltype *, arctype **, arctype **);
 void            dfn();  void            dfn(nltype *);
 bool            dfn_busy();  bool            dfn_busy(nltype *);
 void            dfn_findcycle();  void            dfn_findcycle(nltype *);
 void            dfn_init();  void            dfn_init(void);
 bool            dfn_numbered();  bool            dfn_numbered(nltype *);
 void            dfn_post_visit();  void            dfn_post_visit(nltype *);
 void            dfn_pre_visit();  void            dfn_pre_visit(nltype *);
 void            dfn_self_cycle();  void            dfn_self_cycle(nltype *);
 nltype          **doarcs();  nltype          **doarcs(void);
 void            doflags(void);  void            doflags(void);
 void            dotime(void);  void            dotime(void);
 void            dumpsum();  void            dumpsum(const char *);
 void            findcall(nltype *, u_long, u_long);  void            findcall(nltype *, unsigned long, unsigned long);
 void            flatprofheader();  void            flatprofheader(void);
 void            flatprofline();  void            flatprofline(nltype *);
 int             getnfile(const char *, char ***);  int             getnfile(const char *, char ***);
 void            getpfile();  void            getpfile(const char *);
 void            gprofheader();  void            gprofheader(void);
 void            gprofline();  void            gprofline(nltype *);
 int             hertz();  int             hertz(void);
 void            inheritflags(nltype *childp);  void            inheritflags(nltype *);
 unsigned long   max();  unsigned long   max(unsigned long, unsigned long);
 int             membercmp();  int             membercmp(nltype *, nltype *);
 unsigned long   min();  unsigned long   min(unsigned long, unsigned long);
 nltype          *nllookup();  nltype          *nllookup(unsigned long);
 bool            onlist();  bool            onlist(struct stringlist *, const char *);
 FILE            *openpfile();  FILE            *openpfile(const char *);
 long            operandlength();  void            printchildren(nltype *);
 operandenum     operandmode();  void            printcycle(nltype *);
 char            *operandname();  void            printgprof(nltype **);
 void            printchildren();  void            printindex(void);
 void            printcycle();  void            printmembers(nltype *);
 void            printgprof();  void            printname(nltype *);
 void            printindex();  void            printparents(nltype *);
 void            printmembers();  void            printprof(void);
 void            printname();  
 void            printparents();  
 void            printprof();  
 void            readsamples(FILE *);  void            readsamples(FILE *);
 unsigned long   reladdr();  void            sortchildren(nltype *);
 void            sortchildren();  void            sortmembers(nltype *);
 void            sortmembers();  void            sortparents(nltype *);
 void            sortparents();  void            tally(struct rawarc *);
 void            tally();  int             timecmp(nltype **, nltype **);
 int             timecmp();  
 void            timepropagate(nltype *);  void            timepropagate(nltype *);
 int             topcmp();  int             topcmp(nltype **, nltype **);
 int             totalcmp();  int             totalcmp(nltype **, nltype **);
   
 #define LESSTHAN        -1  #define LESSTHAN        -1
 #define EQUALTO         0  #define EQUALTO         0

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12