summaryrefslogtreecommitdiff
path: root/sys/gdbscripts
diff options
context:
space:
mode:
Diffstat (limited to 'sys/gdbscripts')
-rw-r--r--sys/gdbscripts/xps6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/gdbscripts/xps b/sys/gdbscripts/xps
index 152e7f1aaee..4fcd13eb910 100644
--- a/sys/gdbscripts/xps
+++ b/sys/gdbscripts/xps
@@ -1,4 +1,4 @@
-# $NetBSD: xps,v 1.2 1997/02/12 23:35:12 gwr Exp $
+# $NetBSD: xps,v 1.3 1997/04/16 00:58:26 cgd Exp $
# xps
# kernel ps
@@ -18,9 +18,9 @@ define xps
set $p = zombproc.lh_first
end
- printf " proc pid flag st wchan comm\n"
+ printf " proc pid flag st wchan comm\n"
while ($p)
- printf "%#10x %5d %8x %2x %#10x %s", $p, $p->p_pid, \
+ printf "%#18lx %5d %8x %2x %#18lx %s", $p, $p->p_pid, \
$p->p_flag, $p->p_stat, $p->p_wchan, \
(char *) $p->p_comm
if ($p->p_wmesg)