diff options
author | Steve Chamberlain <sac@cygnus> | 1993-06-16 19:58:37 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1993-06-16 19:58:37 +0000 |
commit | 73fbbeead4ad2f978769a43cd9582ef1104f6732 (patch) | |
tree | 99a3d4c6b77911d910dcbf5546684617114a385d /gprof/gmon.h | |
parent | 3ef6f6045e6a54551391d308b6be214ce9782bab (diff) | |
download | gdb-73fbbeead4ad2f978769a43cd9582ef1104f6732.zip gdb-73fbbeead4ad2f978769a43cd9582ef1104f6732.tar.gz gdb-73fbbeead4ad2f978769a43cd9582ef1104f6732.tar.bz2 |
* gmon.h, gprof.h: structs of chars used to hold external
representations.
* gprof.c (getpfile, openpfile, readsamples): Swap data in using
new structures.
Diffstat (limited to 'gprof/gmon.h')
-rw-r--r-- | gprof/gmon.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gprof/gmon.h b/gprof/gmon.h index c89a721..2c88a63 100644 --- a/gprof/gmon.h +++ b/gprof/gmon.h @@ -98,6 +98,12 @@ struct rawarc { long raw_count; }; +struct veryrawarc { + char raw_frompc[4]; + char raw_selfpc[4]; + char raw_count[4]; +}; + /* * general rounding functions. */ |