summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2009-09-18 13:41:16 +0200
committerMarcelo Tosatti <mtosatti@redhat.com>2009-09-18 16:08:52 -0300
commit32f67223b84cbeeab7b4b1da067128d4454fc476 (patch)
treea7d218795600ac3ffa639ae4de1495ba1ddb4104 /compatfd.c
parentcompatfd is included before, and it is compiled unconditionally (diff)
downloadqemu-kvm-32f67223b84cbeeab7b4b1da067128d4454fc476.tar.gz
qemu-kvm-32f67223b84cbeeab7b4b1da067128d4454fc476.tar.bz2
qemu-kvm-32f67223b84cbeeab7b4b1da067128d4454fc476.zip
Use common style for signalfd
s/CONFIG_signalfd/CONFIG_signalfd/ Signed-off-by: Juan Quintela <quintela@redhat.com> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'compatfd.c')
-rw-r--r--compatfd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/compatfd.c b/compatfd.c
index 36e37e5d1..8c7859781 100644
--- a/compatfd.c
+++ b/compatfd.c
@@ -100,7 +100,7 @@ static int qemu_signalfd_compat(const sigset_t *mask)
int qemu_signalfd(const sigset_t *mask)
{
-#if defined(CONFIG_signalfd)
+#if defined(CONFIG_SIGNALFD)
int ret;
ret = syscall(SYS_signalfd, -1, mask, _NSIG / 8);