summaryrefslogtreecommitdiff
path: root/Base/usr
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-11-17 19:22:15 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-11-17 19:23:35 +0100
commit189f234b4708ef14f4c6c2a6df7766a462ebce66 (patch)
tree9127598416f7b29fe72b9fc1d05a2654ea302b9f /Base/usr
parent8ccbd7002b912fd1dc561b66a05ecc0a905020f6 (diff)
downloadserenity-189f234b4708ef14f4c6c2a6df7766a462ebce66.zip
Docs: Add info about -T and -t to crash(1)
Diffstat (limited to 'Base/usr')
-rw-r--r--Base/usr/share/man/man1/crash.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/Base/usr/share/man/man1/crash.md b/Base/usr/share/man/man1/crash.md
index 4e55f82573..78a8ba83a9 100644
--- a/Base/usr/share/man/man1/crash.md
+++ b/Base/usr/share/man/man1/crash.md
@@ -25,10 +25,12 @@ kinds of crashes.
* `-M`: Read a pointer from uninitialized memory, then write to it.
* `-F`: Read a pointer from memory freed using `free()`, then write to it.
* `-r`: Write to read-only memory.
+* `-T`: Make a syscall while using an invalid stack pointer.
+* `-t`: Trigger a page fault while using an invalid stack pointer.
## Examples
```sh
$ crash -F
Shell: crash(33) exitied due to signal "Segmentation violation"
-``` \ No newline at end of file
+```