On 11/26/2014 03:39 AM, Pavel Dovgalyuk wrote: > This patch adds global variables, defines, functions declarations, > and function stubs for deterministic VM replay used by external modules. > > Signed-off-by: Pavel Dovgalyuk <pavel.dovga...@ispras.ru> > ---
> +# Since: 2.3 > +## > +{ 'enum': 'ReplaySubmode', > + 'data': [ 'unknown', 'normal' ] } > diff --git a/replay/Makefile.objs b/replay/Makefile.objs > +++ b/stubs/replay.c > @@ -0,0 +1,8 @@ > +#include "replay/replay.h" > + > +ReplayMode replay_mode; > + > +ReplaySubmode replay_get_play_submode(void) > +{ > + return 0; Although QMP code generation happens to assign 0 to the first listed enum (in this case, REPLAY_SUBMODE_UNKNOWN), it is safer to explicitly use an enum value rather than an open-coded '0' in this function. -- Eric Blake eblake redhat com +1-919-301-3266 Libvirt virtualization library http://libvirt.org
signature.asc
Description: OpenPGP digital signature