1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:57:35 +00:00

Documentation: Update bt(1) man page for symbolication changes

This commit is contained in:
Andreas Kling 2021-05-22 18:36:52 +02:00
parent 9c2786b872
commit 85dd5b810b

View file

@ -11,15 +11,15 @@ $ bt <pid>
## Description ## Description
This program is used to inspect the current executable state of a process. This program is used to inspect the current executable state of a process.
It will read the stack of each thread in the process, and symbolize the It will read the stack of each thread in the process, and symbolicate the
addresses for each frame in the stack producing a backtrace. addresses for each frame in the stack producing a backtrace.
**NOTE**: **NOTE**:
* Kernel addresses will not be available unless you are super user. * Kernel addresses will not be available unless you are super user.
* If Kernel addresses are available, they will not be symbolized unless the * If Kernel addresses are available, they will not be symbolicated unless
`SymbolServer` service has access to the `/boot/Kernel` file. the current user has access to the `/boot/Kernel` file.
## Examples ## Examples