From 71b797c176b724055b2d575a5e28f6dc45f683ee Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sat, 30 Aug 2003 19:06:57 +0000 Subject: [PATCH] Label the uarea address as such in DDB's ps output --- sys/ddb/db_ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/ddb/db_ps.c b/sys/ddb/db_ps.c index 55aa86ba42b..d12b250d88d 100644 --- a/sys/ddb/db_ps.c +++ b/sys/ddb/db_ps.c @@ -70,7 +70,7 @@ db_ps(dummy1, dummy2, dummy3, dummy4) p = &proc0; db_setup_paging(db_simple_pager, &quit, DB_LINES_PER_PAGE); - db_printf(" pid proc addr uid ppid pgrp flag stat wmesg wchan cmd\n"); + db_printf(" pid proc uarea uid ppid pgrp flag stat wmesg wchan cmd\n"); while (--np >= 0 && !quit) { if (p == NULL) { printf("oops, ran out of processes early!\n");