diff options
author | rsc <devnull@localhost> | 2004-05-05 04:22:16 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-05-05 04:22:16 +0000 |
commit | 2e965b3324b32be00a2193bf304dcb936f02824b (patch) | |
tree | c183e68a04ee42308f493face299cb4cc4c559ec /acid/thread | |
parent | 4f48d1d4f72b1986ba6df3ccd9db62cfa1ef3df9 (diff) | |
download | plan9port-2e965b3324b32be00a2193bf304dcb936f02824b.tar.gz plan9port-2e965b3324b32be00a2193bf304dcb936f02824b.tar.bz2 plan9port-2e965b3324b32be00a2193bf304dcb936f02824b.zip |
various bug fixes
Diffstat (limited to 'acid/thread')
-rw-r--r-- | acid/thread | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/acid/thread b/acid/thread index 9fcd9b58..d4787e78 100644 --- a/acid/thread +++ b/acid/thread @@ -61,11 +61,6 @@ defn alt(A){ print(altfmt(A), "\n"); } -threadignsrc = { - "plan9/src/libc", - "plan9/src/libthread", -}; - defn fnname(a){ local sym, s; @@ -100,7 +95,7 @@ defn threadstkline(T){ pc = frame[2]; pc0 = frame[0]; file = pcfile(pc); - if !regexp("plan9/src/libc/", file) + if !regexp("plan9/src/lib9/", file) && !regexp("plan9/src/libthread/", file) && match(file, stkignore)==-1 then stop = 1; @@ -234,7 +229,8 @@ defn lproc(P){ threadstkignore = { "plan9/src/libthread/", - "plan9/src/libc/(386|arm|alpha|sparc|power|mips)/" + "plan9/src/lib9/", + "plan9/src/lib9/(fmt|utf)/", }; defn threadstks(P){ complex Proc P; |