On 12/01/2015 13:01, Pavel Dovgalyuk wrote: > +void qemu_system_shutdown_request_impl(void) > { > trace_qemu_system_shutdown_request(); > shutdown_requested = 1; > qemu_notify_event(); > } > > +void qemu_system_shutdown_request(void) > +{ > + replay_shutdown_request(); > + qemu_system_shutdown_request_impl(); > +} > +
No need to have a separate function. Paolo