xref: /original-bsd/sys/sys/gmon.h (revision 62734ea8)
1 /*	gmon.h	4.1	82/06/27	*/
2 
3 struct phdr {
4 	char	*lpc;
5 	char	*hpc;
6 	int	ncnt;
7 };
8 
9 struct tostruct {
10 	char	*selfpc;
11 	long	count;
12 	u_short	link;
13 };
14 
15 /*
16  * a raw arc,
17  *	with pointers to the calling site and the called site
18  *	and a count.
19  */
20 struct rawarc {
21 	u_long	raw_frompc;
22 	u_long	raw_selfpc;
23 	long	raw_count;
24 };
25