diff options
author | jhibbits <jhibbits@FreeBSD.org> | 2012-11-07 23:45:09 +0000 |
---|---|---|
committer | jhibbits <jhibbits@FreeBSD.org> | 2012-11-07 23:45:09 +0000 |
commit | 99d6a5644c78b3f3504ecbf7be003b7c3e99a62a (patch) | |
tree | 8d8c4ccbc7450fce2f9dc5ef56aa8edccb25145d /sys/cddl/dev/lockstat/lockstat.c | |
parent | c0efff79f978db7391db5e3e771dd9eaaf68abc5 (diff) | |
download | FreeBSD-src-99d6a5644c78b3f3504ecbf7be003b7c3e99a62a.zip FreeBSD-src-99d6a5644c78b3f3504ecbf7be003b7c3e99a62a.tar.gz |
Implement DTrace for PowerPC. This includes both 32-bit and 64-bit.
There is one known issue: Some probes will display an error message along the
lines of: "Invalid address (0)"
I tested this with both a simple dtrace probe and dtruss on a few different
binaries on 32-bit. I only compiled 64-bit, did not run it, but I don't expect
problems without the modules loaded. Volunteers are welcome.
MFC after: 1 month
Diffstat (limited to 'sys/cddl/dev/lockstat/lockstat.c')
-rw-r--r-- | sys/cddl/dev/lockstat/lockstat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/cddl/dev/lockstat/lockstat.c b/sys/cddl/dev/lockstat/lockstat.c index f16c813..9b3f7d7 100644 --- a/sys/cddl/dev/lockstat/lockstat.c +++ b/sys/cddl/dev/lockstat/lockstat.c @@ -45,7 +45,8 @@ #include <sys/dtrace.h> #include <sys/lockstat.h> -#if defined(__i386__) || defined(__amd64__) || defined(__mips__) +#if defined(__i386__) || defined(__amd64__) || \ + defined(__mips__) || defined(__powerpc__) #define LOCKSTAT_AFRAMES 1 #else #error "architecture not supported" |