From fd856af62b5fc2086706fd3941f1842de1ddb6a0 Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Mon, 15 Apr 2013 16:58:56 +0100 Subject: [PATCH] Add empty stub for virThreadCancel on Win32 Win32 does not like undefined symbols, so define an empty virThreadCancel impl. Signed-off-by: Daniel P. Berrange --- src/util/virthreadwin32.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/virthreadwin32.c b/src/util/virthreadwin32.c index 0ad7e5c570..4543ad864e 100644 --- a/src/util/virthreadwin32.c +++ b/src/util/virthreadwin32.c @@ -357,6 +357,8 @@ void virThreadJoin(virThreadPtr thread) } } +void virThreadCancel(virThreadPtr thread ATTRIBUTE_UNUSED) +{} int virThreadLocalInit(virThreadLocalPtr l, virThreadLocalCleanup c) -- GitLab