mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
352cbae8b3
The recent virDomainQemuAgentCommand addition is part of 0.10.0; also, grouping all libvirt-qemu.so callbacks together makes them easier to identify. * src/libvirt_qemu.syms: Fix release symbol. * src/qemu/qemu_driver.c (qemuDriver): Likewise. * src/remote/remote_driver.c (remote_driver): Likewise. * src/driver.h (_virDriver): Group qemu-specific callbacks.
27 lines
697 B
Plaintext
27 lines
697 B
Plaintext
#
|
|
# Officially exported symbols, for which header
|
|
# file definitions are installed in /usr/include/libvirt
|
|
# from libvirt-qemu.h
|
|
#
|
|
# Versions here are *fixed* to match the libvirt version
|
|
# at which the symbol was introduced. This ensures that
|
|
# a new client app requiring symbol foo() can't accidentally
|
|
# run with old libvirt-qemu.so not providing foo() - the global
|
|
# soname version info can't enforce this since we never
|
|
# change the soname
|
|
#
|
|
LIBVIRT_QEMU_0.8.3 {
|
|
global:
|
|
virDomainQemuMonitorCommand;
|
|
};
|
|
|
|
LIBVIRT_QEMU_0.9.4 {
|
|
global:
|
|
virDomainQemuAttach;
|
|
} LIBVIRT_QEMU_0.8.3;
|
|
|
|
LIBVIRT_QEMU_0.10.0 {
|
|
global:
|
|
virDomainQemuAgentCommand;
|
|
} LIBVIRT_QEMU_0.9.4;
|