Comment 9 for bug 1405385

Revision history for this message
Peter Maydell (pmaydell) wrote : Re: [Qemu-devel] [Bug 1405385] Re: QEMU crashes when virtio network cards are used together with e1000 network cards

On 29 December 2014 at 08:29, Bram Klein Gunnewiek
<email address hidden> wrote:
> Right before QEMU crashes I get this error in gdb:
>
> Program received signal SIGUSR1, User defined signal 1.

SIGUSR1 is used internally by QEMU. You can tell gdb not to
bother you about it:

 handle SIGUSR1 pass noprint nostop

before running.

-- PMM