aboutsummaryrefslogtreecommitdiffstats
path: root/docs/syzbot.md
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2021-10-07 10:52:29 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2021-12-10 12:30:07 +0100
commit52c8379f77b5f292e2d527c66dfe17a899381d20 (patch)
tree962df2c6aa6a30264094cc8d5443b88cfce26275 /docs/syzbot.md
parentfd8caa5462e64f37cb9eebd75ffca1737dde447d (diff)
docs: update docs to reflect the new `async` flag
Diffstat (limited to 'docs/syzbot.md')
-rw-r--r--docs/syzbot.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/syzbot.md b/docs/syzbot.md
index 77fff12ee..d001b76ba 100644
--- a/docs/syzbot.md
+++ b/docs/syzbot.md
@@ -221,11 +221,11 @@ parallel).
A syzkaller program can be converted to an almost equivalent C source using `syz-prog2c` utility. `syz-prog2c`
has lots of flags in common with [syz-execprog](/docs/executing_syzkaller_programs.md),
-e.g. `-threaded`/`-collide` which control if the syscalls are executed sequentially or in parallel.
+e.g. `-threaded` which controls if the syscalls are executed sequentially or in parallel.
An example invocation:
```
-syz-prog2c -prog repro.syz.txt -enable=all -threaded -collide -repeat -procs=8 -sandbox=namespace -segv -tmpdir -waitrepeat
+syz-prog2c -prog repro.syz.txt -enable=all -threaded -repeat -procs=8 -sandbox=namespace -segv -tmpdir -waitrepeat
```
However, note that if `syzbot` did not provide a C reproducer, it wasn't able to trigger the bug using the C program (though, it can be just because the bug is triggered by a subtle race condition).