aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2020-05-31 10:23:36 +0200
committerGitHub <noreply@github.com>2020-05-31 10:23:36 +0200
commita0331e89e036103c95eb898742ea5d5f28a987b0 (patch)
tree52e748233efefa1141b4107276c4f7d3304fce22 /docs
parent6f3e1c7c67bc16c53b8c778984c068c342ec5274 (diff)
docs: fix a typo
Fixes ##1778
Diffstat (limited to 'docs')
-rw-r--r--docs/executing_syzkaller_programs.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/executing_syzkaller_programs.md b/docs/executing_syzkaller_programs.md
index d06c16ffd..22763d8ce 100644
--- a/docs/executing_syzkaller_programs.md
+++ b/docs/executing_syzkaller_programs.md
@@ -47,7 +47,7 @@ Several useful `syz-execprog` flags:
use threaded mode in executor (default true)
```
-If you pass `-threaded=0 -collide=0`, programs will be executed as a simple single-threaded sequence of syscalls. `-threaded=1` forces execution of each syscall in a separate thread, so that execution can proceed over blocking syscalls. `-collide=0` forces second round of execution of syscalls when pairs of syscalls are executed concurrently.
+If you pass `-threaded=0 -collide=0`, programs will be executed as a simple single-threaded sequence of syscalls. `-threaded=1` forces execution of each syscall in a separate thread, so that execution can proceed over blocking syscalls. `-collide=1` forces second round of execution of syscalls when pairs of syscalls are executed concurrently.
If you are replaying a reproducer program that contains a header along the following lines:
```