aboutsummaryrefslogtreecommitdiff
path: root/gprof/cg_dfn.h
blob: ac20330680b92457fe752bd574395a1f775439f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef cg_dfn_h
#define cg_dfn_h

/*
 * Flags which mark a symbol as topologically ``busy'' or as
 * topologically ``not_numbered'':
 */
#define	DFN_BUSY	-1
#define	DFN_NAN		0

/*
 * Depth-first numbering of a call-graph.
 */

extern void cg_dfn PARAMS((Sym *root));

#endif /* cg_dfn_h */