diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-11-17 19:22:15 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-11-17 19:23:35 +0100 |
commit | 189f234b4708ef14f4c6c2a6df7766a462ebce66 (patch) | |
tree | 9127598416f7b29fe72b9fc1d05a2654ea302b9f /Base/usr | |
parent | 8ccbd7002b912fd1dc561b66a05ecc0a905020f6 (diff) | |
download | serenity-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.md | 4 |
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 +``` |