diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-05-14 06:58:55 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2020-05-14 06:58:55 +0000 |
commit | 7d17a58cefc2bffd3f8fdbae7b1fead9db7fbca0 (patch) | |
tree | 3422793834475518140585bfbb48d859a36a728c /sys/arch/powerpc | |
parent | f57fb0d0486d7aafc358ce2efaa001618a4eb084 (diff) |
Use '/t' on all architectures to get a trace via TID.
ok sthen@, patrick@
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/ddb/db_trace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/ddb/db_trace.c b/sys/arch/powerpc/ddb/db_trace.c index 248d62be9d6..1f51b5df023 100644 --- a/sys/arch/powerpc/ddb/db_trace.c +++ b/sys/arch/powerpc/ddb/db_trace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_trace.c,v 1.16 2020/04/18 04:45:20 visa Exp $ */ +/* $OpenBSD: db_trace.c,v 1.17 2020/05/14 06:58:54 mpi Exp $ */ /* $NetBSD: db_trace.c,v 1.15 1996/02/22 23:23:41 gwr Exp $ */ /* @@ -126,7 +126,7 @@ db_stack_trace_print(db_expr_t addr, int have_addr, db_expr_t count, int i, narg, trace_proc = 0; while ((c = *cp++) != 0) { - if (c == 'p') + if (c == 't') trace_proc = 1; } |