summaryrefslogtreecommitdiffstats
path: root/os-win32.c
diff options
context:
space:
mode:
authorJan Kiszka2011-03-15 12:26:31 +0100
committerMarcelo Tosatti2011-03-16 21:11:07 +0100
commitdc7a09cfe47679d89289101cc9eb387c45e48fe7 (patch)
treeb55b3021443336fdb313dc41efe287355e3f21ea /os-win32.c
parentkvm: x86: Push kvm_arch_debug to kvm_arch_handle_exit (diff)
downloadqemu-dc7a09cfe47679d89289101cc9eb387c45e48fe7.tar.gz
qemu-dc7a09cfe47679d89289101cc9eb387c45e48fe7.tar.xz
qemu-dc7a09cfe47679d89289101cc9eb387c45e48fe7.zip
Expose thread_id in info cpus
Based on patch by Glauber Costa: To allow management applications like libvirt to apply CPU affinities to the VCPU threads, expose their ID via info cpus. This patch provides the pre-existing and used interface from qemu-kvm. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'os-win32.c')
-rw-r--r--os-win32.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/os-win32.c b/os-win32.c
index c971d928ab..d6d54c60b9 100644
--- a/os-win32.c
+++ b/os-win32.c
@@ -266,3 +266,8 @@ int qemu_create_pidfile(const char *filename)
}
return 0;
}
+
+int qemu_get_thread_id(void)
+{
+ return GetCurrentThreadId();
+}