summaryrefslogtreecommitdiff
path: root/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
diff options
context:
space:
mode:
authorjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-04 02:51:48 +0000
committerjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2009-02-04 02:51:48 +0000
commitae66d8de8713094c6dc8fad4abb3bf1339e2a817 (patch)
treec90818f81d468b10c80720faad805f11d1bc895a /Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
parent6a27a4ebd0668054382ea9c7fd861743cbfa276e (diff)
downloadedk2-platforms-ae66d8de8713094c6dc8fad4abb3bf1339e2a817.tar.xz
use the GUIDed versions of events: EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE and EVT_SIGNAL_EXIT_BOOT_SERVICES
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7425 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c')
-rw-r--r--Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c b/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
index c8c7d1197e..5482fd98a0 100644
--- a/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
+++ b/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
@@ -958,11 +958,12 @@ WinNtGopStartWindow (
//
// Register to be notified on exit boot services so we can destroy the window.
//
- Status = gBS->CreateEvent (
- EVT_SIGNAL_EXIT_BOOT_SERVICES,
+ Status = gBS->CreateEventEx (
+ EVT_NOTIFY_SIGNAL,
TPL_CALLBACK,
KillNtGopThread,
Private,
+ &gEfiEventExitBootServicesGuid,
&mGopScreenExitBootServicesEvent
);