Skip to content

Commit 6b96581

Browse files
authored
tips (#2903)
1 parent bb4b1f1 commit 6b96581

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/src/DEBUGGING.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ You should *never* use the `EDGES_MAP`'s size as this is just the size of the al
2525
## Q. I still have problems with my fuzzer.
2626
Finally, if you really have no idea what is going on, run your fuzzer with logging enabled. (You can use `env_logger`, `SimpleStdoutLogger`, `SimpleStderrLogger` from `libafl_bolts`. `fuzzbench_text` has an example to show how to use it.) (Don't forget to enable stdout and stderr), and you can open an issue or ask us in Discord.
2727

28-
## Q. My fuzzer died of ``Storing state in crashed fuzzer instance did not work''.
28+
## Q. My fuzzer died of `Storing state in crashed fuzzer instance did not work`.
2929
If the exit code is zero, then this is because either your harness exited or you are using fuzzer_loop_for and forgot to add `mgr.on_restart` at the end of the fuzzer. In the first case, you should patch your harness not to exit. (or use `utils/deexit`).
3030

3131
## Q. I can't leave the TUI screen
32-
Type `q` then you leave TUI.
32+
Type `q` then you leave TUI.
33+
34+
## Q. I see `QEMU internal SIGSEGV {code=MAPERR, addr=0x48}` and my QEMU fuzzer doesn't run.
35+
Are you running QEMU fuzzer on WSL? You have to enable vsyscall https://github.com/microsoft/WSL/issues/4694#issuecomment-556095344.

0 commit comments

Comments
 (0)