Re: [Qemu-devel] [PATCH v3 05/17] qapi: Generate QAPIEvent stuff into separate files

2019-02-07 Thread Marc-André Lureau
On Wed, Feb 6, 2019 at 7:17 PM Markus Armbruster wrote: > > Having to include qapi-events.h just for QAPIEvent is suboptimal, but > quite tolerable now. It'll become problematic when we have events > conditional on the target, because then qapi-events.h won't be usable > from target-independent c

[Qemu-devel] [PATCH v3 05/17] qapi: Generate QAPIEvent stuff into separate files

2019-02-06 Thread Markus Armbruster
Having to include qapi-events.h just for QAPIEvent is suboptimal, but quite tolerable now. It'll become problematic when we have events conditional on the target, because then qapi-events.h won't be usable from target-independent code anymore. Avoid that by generating it into separate files. Sig