diff options
author | David Marchand <david.marchand@6wind.com> | 2014-09-08 11:17:48 +0200 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2015-10-24 18:03:16 +0200 |
commit | a75eb03b9fca3af291ec2c433ddda06121ae927d (patch) | |
tree | b9d8ef5bca0bc11dcb7f56e91d19b61eac455270 /Makefile.objs | |
parent | 12f0b68c82356e4dd24f2f0d370b21eb17f1f42e (diff) |
contrib: add ivshmem client and server
When using ivshmem devices, notifications between guests can be sent as
interrupts using a ivshmem-server (typical use described in documentation).
The client is provided as a debug tool.
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Signed-off-by: David Marchand <david.marchand@6wind.com>
[fix a valgrind warning, option and server_close() segvs, extra server
headers includes, getopt() return type, out-of-tree build, use qemu
event_notifier instead of eventfd, fix x86/osx warnings - Marc-André]
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'Makefile.objs')
-rw-r--r-- | Makefile.objs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.objs b/Makefile.objs index ecfe03c195..fe02ee2cf4 100644 --- a/Makefile.objs +++ b/Makefile.objs @@ -104,3 +104,8 @@ target-obj-y += trace/ # by libqemuutil.a. These should be moved to a separate .json schema. qga-obj-y = qga/ qga-vss-dll-obj-y = qga/ + +###################################################################### +# contrib +ivshmem-client-obj-y = contrib/ivshmem-client/ +ivshmem-server-obj-y = contrib/ivshmem-server/ |