summaryrefslogtreecommitdiff
path: root/source/tools/acpiexec/aehandlers.c
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2016-06-15 10:33:47 -0700
committerGitHub <noreply@github.com>2016-06-15 10:33:47 -0700
commit8aac0be3c840747a032b63e7365c99190e2a0ba9 (patch)
treec667316883055dd53603d5343436465a14283f10 /source/tools/acpiexec/aehandlers.c
parentf78ce8644e4b13f7d092348ff33e3bf9d36eeffa (diff)
parentcc7c7ebe27537840b6e0109d8ef1435c306669bc (diff)
downloadacpica-8aac0be3c840747a032b63e7365c99190e2a0ba9.tar.gz
Merge pull request #143 from zetalog/efi-edk2
Efi edk2
Diffstat (limited to 'source/tools/acpiexec/aehandlers.c')
-rw-r--r--source/tools/acpiexec/aehandlers.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/tools/acpiexec/aehandlers.c b/source/tools/acpiexec/aehandlers.c
index f08ffbe8e..c3d0a7db8 100644
--- a/source/tools/acpiexec/aehandlers.c
+++ b/source/tools/acpiexec/aehandlers.c
@@ -192,10 +192,12 @@ static char *TableEvents[] =
#endif /* !ACPI_REDUCED_HARDWARE */
-static UINT32 SigintCount = 0;
static AE_DEBUG_REGIONS AeRegions;
+#ifndef _GNU_EFI
+static UINT32 SigintCount = 0;
+
/******************************************************************************
*
* FUNCTION: AeCtrlCHandler
@@ -232,6 +234,7 @@ AeCtrlCHandler (
(void) AcpiOsTerminate ();
exit (0);
}
+#endif
/******************************************************************************