fixed more binutils issues (newer gcc/libc)
[zpugcc/jano.git] / toolchain / gcc / libgloss / i386 / cygmon-gmon.h
blobf35ae332d7f23e164215ada43853dd0613011c75
1 #ifndef GMON_CYGMON_H
2 #define GMON_CYGMON_H
4 struct phdr
6 char *lpc;
7 char *hpc;
8 int ncnt;
9 };
12 #define HISTFRACTION 2
13 #define HISTCOUNTER unsigned short
14 #define HASHFRACTION 1
15 #define ARCDENSITY 2
16 #define MINARCS 50
18 struct tostruct
20 char *selfpc;
21 long count;
22 unsigned short link;
25 struct rawarc
27 unsigned long raw_frompc;
28 unsigned long raw_selfpc;
29 long raw_count;
32 #define ROUNDDOWN(x,y) (((x)/(y))*(y))
33 #define ROUNDUP(x,y) ((((x)+(y)-1)/(y))*(y))
35 #endif