mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-08-30 05:50:08 +03:00
mingw: Add body for virFork and remove double virDriverLoadModule export
Commit 9bd3cce0d2
added virFork and
virDriverLoadModule to libvirt_private.syms, but virFork didn't have
a body on Win32 and virDriverLoadModule was already correctly
exported conditional via libvirt_driver_modules.syms.
This commit is contained in:
@ -314,10 +314,6 @@ virDomainConfNWFilterTeardown;
|
|||||||
virDomainConfVMNWFilterTeardown;
|
virDomainConfVMNWFilterTeardown;
|
||||||
|
|
||||||
|
|
||||||
# driver.h
|
|
||||||
virDriverLoadModule;
|
|
||||||
|
|
||||||
|
|
||||||
# ebtables.h
|
# ebtables.h
|
||||||
ebtablesAddForwardAllowIn;
|
ebtablesAddForwardAllowIn;
|
||||||
ebtablesAddForwardPolicyReject;
|
ebtablesAddForwardPolicyReject;
|
||||||
|
@ -927,6 +927,15 @@ virExecDaemonize(const char *const*argv ATTRIBUTE_UNUSED,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
virFork(pid_t *pid)
|
||||||
|
{
|
||||||
|
*pid = -1;
|
||||||
|
errno = ENOTSUP;
|
||||||
|
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
# endif /* WIN32 */
|
# endif /* WIN32 */
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Reference in New Issue
Block a user