On 28 August 2013 09:01, she roy <she.min....@gmail.com> wrote: > qemu_set_irq(gPl061->irq, 1); > sleep(1); > qemu_set_irq(gPl061->irq, 0);
Never call sleep() inside a qemu device implementation: this will just make the whole of QEMU (including the guest) stop running. -- PMM