diff options
author | Daniel P. Berrange <berrange@redhat.com> | 2015-08-26 12:17:16 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2015-09-11 10:21:38 +0300 |
commit | 1618d2ae7f1728ea26fa38cb661253f134d389ed (patch) | |
tree | 02b5d1eb5c73aea5a079f50c62ca34853099d902 | |
parent | d7646f241c8efc17b4b86cc7a304472792f0cc74 (diff) | |
download | qemu-1618d2ae7f1728ea26fa38cb661253f134d389ed.zip qemu-1618d2ae7f1728ea26fa38cb661253f134d389ed.tar.gz qemu-1618d2ae7f1728ea26fa38cb661253f134d389ed.tar.bz2 |
maint: remove unused include for signal.h
A number of files were including signal.h but not using any
of the functions it provides
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r-- | bsd-user/signal.c | 1 | ||||
-rw-r--r-- | hw/block/xen_disk.c | 1 | ||||
-rw-r--r-- | hw/net/xen_nic.c | 1 | ||||
-rw-r--r-- | hw/usb/redirect.c | 1 | ||||
-rw-r--r-- | os-win32.c | 1 | ||||
-rw-r--r-- | target-i386/translate.c | 1 | ||||
-rw-r--r-- | target-mips/helper.c | 1 | ||||
-rw-r--r-- | target-sh4/helper.c | 1 | ||||
-rw-r--r-- | target-tricore/helper.c | 1 | ||||
-rw-r--r-- | tests/tcg/testthread.c | 1 |
10 files changed, 0 insertions, 10 deletions
diff --git a/bsd-user/signal.c b/bsd-user/signal.c index 445f69e..e4ee2d0 100644 --- a/bsd-user/signal.c +++ b/bsd-user/signal.c @@ -21,7 +21,6 @@ #include <string.h> #include <stdarg.h> #include <unistd.h> -#include <signal.h> #include <errno.h> #include "qemu.h" diff --git a/hw/block/xen_disk.c b/hw/block/xen_disk.c index 267d8a8..36d7398 100644 --- a/hw/block/xen_disk.c +++ b/hw/block/xen_disk.c @@ -24,7 +24,6 @@ #include <stdarg.h> #include <string.h> #include <unistd.h> -#include <signal.h> #include <inttypes.h> #include <time.h> #include <fcntl.h> diff --git a/hw/net/xen_nic.c b/hw/net/xen_nic.c index d7cbfc1..0da16b4 100644 --- a/hw/net/xen_nic.c +++ b/hw/net/xen_nic.c @@ -24,7 +24,6 @@ #include <stdarg.h> #include <string.h> #include <unistd.h> -#include <signal.h> #include <inttypes.h> #include <fcntl.h> #include <errno.h> diff --git a/hw/usb/redirect.c b/hw/usb/redirect.c index 34cf60d..38086cd 100644 --- a/hw/usb/redirect.c +++ b/hw/usb/redirect.c @@ -34,7 +34,6 @@ #include "sysemu/char.h" #include <sys/ioctl.h> -#include <signal.h> #include <usbredirparser.h> #include <usbredirfilter.h> @@ -26,7 +26,6 @@ #include <mmsystem.h> #include <unistd.h> #include <fcntl.h> -#include <signal.h> #include <time.h> #include <errno.h> #include <sys/time.h> diff --git a/target-i386/translate.c b/target-i386/translate.c index 82e2245..b1a5ad9 100644 --- a/target-i386/translate.c +++ b/target-i386/translate.c @@ -21,7 +21,6 @@ #include <stdio.h> #include <string.h> #include <inttypes.h> -#include <signal.h> #include "qemu/host-utils.h" #include "cpu.h" diff --git a/target-mips/helper.c b/target-mips/helper.c index f44edbb..37bba67 100644 --- a/target-mips/helper.c +++ b/target-mips/helper.c @@ -21,7 +21,6 @@ #include <stdio.h> #include <string.h> #include <inttypes.h> -#include <signal.h> #include "cpu.h" #include "sysemu/kvm.h" diff --git a/target-sh4/helper.c b/target-sh4/helper.c index a533f08..dc101cb 100644 --- a/target-sh4/helper.c +++ b/target-sh4/helper.c @@ -21,7 +21,6 @@ #include <stdio.h> #include <string.h> #include <inttypes.h> -#include <signal.h> #include "cpu.h" diff --git a/target-tricore/helper.c b/target-tricore/helper.c index f52504c..1808b28 100644 --- a/target-tricore/helper.c +++ b/target-tricore/helper.c @@ -20,7 +20,6 @@ #include <stdio.h> #include <string.h> #include <inttypes.h> -#include <signal.h> #include "cpu.h" diff --git a/tests/tcg/testthread.c b/tests/tcg/testthread.c index 2679af1..810ba5d 100644 --- a/tests/tcg/testthread.c +++ b/tests/tcg/testthread.c @@ -2,7 +2,6 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> -#include <signal.h> #include <unistd.h> #include <inttypes.h> #include <pthread.h> |