summaryrefslogtreecommitdiff
path: root/sys/kern/kern_lock.c
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2007-11-14 06:21:24 +0000
committerJulian Elischer <julian@FreeBSD.org>2007-11-14 06:21:24 +0000
commit431f89061443375688abea4e01c0b01936f0f905 (patch)
tree55718e91180bcb3bddcd007fc62792945ab8ae97 /sys/kern/kern_lock.c
parentca081fdbc5aa456250f138fa6fe1444553664721 (diff)
Notes
Diffstat (limited to 'sys/kern/kern_lock.c')
-rw-r--r--sys/kern/kern_lock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/kern_lock.c b/sys/kern/kern_lock.c
index 2203c215a189..72566305c47f 100644
--- a/sys/kern/kern_lock.c
+++ b/sys/kern/kern_lock.c
@@ -708,7 +708,7 @@ db_show_lockmgr(struct lock_object *lock)
td = lkp->lk_lockholder;
db_printf("EXCL (count %d) %p ", lkp->lk_exclusivecount, td);
db_printf("(tid %d, pid %d, \"%s\")\n", td->td_tid,
- td->td_proc->p_pid, td->td_proc->p_comm);
+ td->td_proc->p_pid, td->td_name);
} else
db_printf("UNLOCKED\n");
if (lkp->lk_waitcount > 0)