summaryrefslogtreecommitdiff
path: root/sys/gdbscripts
diff options
context:
space:
mode:
authorskrll <skrll@NetBSD.org>2017-06-05 18:44:13 +0000
committerskrll <skrll@NetBSD.org>2017-06-05 18:44:13 +0000
commit71f4880d4f1371eae9321cb9f11cdde8ef8151d4 (patch)
tree44c78f176c93bd73259dc42d105701519c306da4 /sys/gdbscripts
parent30ce8232433b7f1931b1a0083432a2c2a52cafc7 (diff)
Typo in previous
Diffstat (limited to 'sys/gdbscripts')
-rw-r--r--sys/gdbscripts/cpus4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/gdbscripts/cpus b/sys/gdbscripts/cpus
index a94c42340e7..403f9fa3c98 100644
--- a/sys/gdbscripts/cpus
+++ b/sys/gdbscripts/cpus
@@ -1,10 +1,10 @@
-# $NetBSD: cpus,v 1.2 2017/06/05 18:34:16 skrll Exp $
+# $NetBSD: cpus,v 1.3 2017/06/05 18:44:13 skrll Exp $
define cpus
set $cpu = 0
printf "\t cpu id curlwp\n"
while ($cpu < ncpu)
- set $ci = &cpu_infos[$cpu]
+ set $ci = cpu_infos[$cpu]
printf "%16lx %2d %16lx\n", $ci, $ci->ci_cpuid, $ci->ci_curlwp
set $cpu++
end