From d25f89c9e91d6c46b85969922411a211a6347a7d Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 17 Jun 2011 11:25:49 +0200 Subject: Register Linux dyntick timer as per-thread signal Derived from kvm-tool patch http://thread.gmane.org/gmane.comp.emulators.kvm.devel/74309 Ingo Molnar pointed out that sending the timer signal to the whole process, just blocking it everywhere, is suboptimal with an increasing number of threads. QEMU is also using this pattern so far. Linux provides a (non-portable) way to restrict the signal to a single thread: We can use SIGEV_THREAD_ID unless we are forced to emulate signalfd via an additional thread. That case could theoretically be optimized as well, but it doesn't look worth bothering. Reviewed-by: Richard Henderson Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori --- compatfd.h | 1 + 1 file changed, 1 insertion(+) (limited to 'compatfd.h') diff --git a/compatfd.h b/compatfd.h index fc3791520..6b04877b9 100644 --- a/compatfd.h +++ b/compatfd.h @@ -39,5 +39,6 @@ struct qemu_signalfd_siginfo { }; int qemu_signalfd(const sigset_t *mask); +bool qemu_signalfd_available(void); #endif -- cgit v1.2.3