From: Jonathan Rajotte Julien Date: Tue, 11 May 2021 18:53:47 +0000 (-0400) Subject: Document how to ignore SIGSEV for debugging X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=964084b4b2cd7477ac5f6f776001ecb87cbe1734;p=lttng-ust-java-tests.git Document how to ignore SIGSEV for debugging --- diff --git a/README.md b/README.md index 27f0b8b..bf4350e 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,9 @@ You should hit the breakpoint at some point and from there use steps etc. If you want to debug lttng-ust, you need to insert a breakpoint at a valid point in time for the test and then use gdb to hook yourself to the java process. From there debugging is the same as any C application. +You will need to ignore SIGSEV from java under gdb: + + handle SIGSEGV nostop noprint pass Running the benchmarks ----------------------