Просмотр исходного кода

Docs: Add info about -T and -t to crash(1)

Andreas Kling 5 лет назад
Родитель
Сommit
189f234b47
1 измененных файлов с 3 добавлено и 1 удалено
  1. 3 1
      Base/usr/share/man/man1/crash.md

+ 3 - 1
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"
-```
+```