From: Beket Date: Fri, 13 Mar 2009 05:24:09 +0000 (-0700) Subject: Add link to instruction address X-Git-Url: https://gitweb.dragonflybsd.org/ikiwiki.git/commitdiff_plain/e380f8ccc551cc3d2bfa2438c7264c3b4b88792f Add link to instruction address --- diff --git a/docs/howtos/HowToDebugVKernels/index.mdwn b/docs/howtos/HowToDebugVKernels/index.mdwn index 7bee81af..7b530c66 100644 --- a/docs/howtos/HowToDebugVKernels/index.mdwn +++ b/docs/howtos/HowToDebugVKernels/index.mdwn @@ -76,7 +76,7 @@ Let's get a trace of what went wrong: go_user(5709dd38,0,0,7b,0) at 0x82151ac db> -Here sys_ktrace, allproc_scan, etc represent function names. Functions are listed in the reverse order they were called. Thus, in this particular example, the last function which was called is ktrdestroy(). The hex values in parentheses are the first five items on the stack. The last hex value is the instruction address. Since ddb doesn't really know how many arguments a function takes, it always prints five. +Here sys_ktrace, allproc_scan, etc represent function names. Functions are listed in the reverse order they were called. Thus, in this particular example, the last function which was called is ktrdestroy(). The hex values in parentheses are the first five items on the stack. The last hex value is the [instruction address](http://en.wikipedia.org/wiki/Program_counter). Since ddb doesn't really know how many arguments a function takes, it always prints five. # Gdb