diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-05-08 16:46:36 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-05-08 16:46:36 +0000 |
commit | 584e4fed1fb6695c8603287739b1b68ef791f48c (patch) | |
tree | 4fe9f999dfd7e5221b0cb16b978e75faf7a98dee /usr.bin/gprof/hppa.c | |
parent | 37392dec62ee72737d0bdef8be7fa39faa75df0b (diff) |
Split out symbol handling into a separate file.
Implement symbol handling for ELF (based on FreeBSD).
Implement dummy support for alpha, hppa, powerpc and sparc64.
Tested during the last 2 months on various archs (never comitted because
other stuff got in the way).
Some fixups to i386 support from mickey@
This lets us switch all elf archs to this gprof.
Diffstat (limited to 'usr.bin/gprof/hppa.c')
-rw-r--r-- | usr.bin/gprof/hppa.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/usr.bin/gprof/hppa.c b/usr.bin/gprof/hppa.c new file mode 100644 index 00000000000..4586923c014 --- /dev/null +++ b/usr.bin/gprof/hppa.c @@ -0,0 +1,7 @@ +#include "gprof.h" + +void +findcall(nltype *parentp, unsigned long p_lowpc, unsigned long p_highpc) +{ + /* not supported. */ +} |