diff options
author | Sameeh Jubran <sameeh@daynix.com> | 2017-03-23 18:26:50 +0200 |
---|---|---|
committer | Michael Roth <mdroth@linux.vnet.ibm.com> | 2017-04-26 23:56:46 -0500 |
commit | f342cc93ec918d684e8a6f6e646551a9c7fbc019 (patch) | |
tree | 716d871a6745b5a2d1daa450350a15b5d1c74949 /qga/vss-win32/install.h | |
parent | 81b2d5ceb0cfb4cdc2163492e3169ed714b0cda9 (diff) |
qemu-ga: Make QGA VSS provider service run only when needed
Currently the service runs in background on boot even though it is not
needed and once it is running it never stops. The service needs to be
running only during freeze operation and it should be stopped after
executing thaw.
Signed-off-by: Sameeh Jubran <sameeh@daynix.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/vss-win32/install.h')
-rw-r--r-- | qga/vss-win32/install.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/qga/vss-win32/install.h b/qga/vss-win32/install.h new file mode 100644 index 0000000000..35364afdea --- /dev/null +++ b/qga/vss-win32/install.h @@ -0,0 +1,20 @@ +/* + * QEMU Guest Agent VSS requester declarations + * + * Copyright Hitachi Data Systems Corp. 2013 + * + * Authors: + * Tomoki Sekiyama <tomoki.sekiyama@hds.com> + * + * This work is licensed under the terms of the GNU GPL, version 2 or later. + * See the COPYING file in the top-level directory. + */ + +#ifndef INSTALL_H +#define INSTALL_H + +#include <comadmin.h> + +STDAPI StopService(void); + +#endif |