Changeset 85718 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Library/UefiRuntimeLib
- Timestamp:
- Aug 12, 2020 4:09:12 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139865
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-133213 /vendor/edk2/current 103735-103757,103769-103776,129194-139864
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Library/UefiRuntimeLib/RuntimeLib.c
r80721 r85718 94 94 // Register SetVirtualAddressMap () notify function 95 95 // 96 Status = gBS->CreateEvent Ex(97 EVT_ NOTIFY_SIGNAL,96 Status = gBS->CreateEvent ( 97 EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE, 98 98 TPL_NOTIFY, 99 99 RuntimeLibVirtualNotifyEvent, 100 100 NULL, 101 &gEfiEventVirtualAddressChangeGuid,102 101 &mEfiVirtualNotifyEvent 103 102 ); … … 105 104 ASSERT_EFI_ERROR (Status); 106 105 107 Status = gBS->CreateEvent Ex(108 EVT_ NOTIFY_SIGNAL,106 Status = gBS->CreateEvent ( 107 EVT_SIGNAL_EXIT_BOOT_SERVICES, 109 108 TPL_NOTIFY, 110 109 RuntimeLibExitBootServicesEvent, 111 110 NULL, 112 &gEfiEventExitBootServicesGuid,113 111 &mEfiExitBootServicesEvent 114 112 ); -
trunk/src/VBox/Devices/EFI/FirmwareNew/MdePkg/Library/UefiRuntimeLib/UefiRuntimeLib.inf
r80721 r85718 40 40 UefiRuntimeServicesTableLib 41 41 DebugLib 42 43 [Guids]44 gEfiEventExitBootServicesGuid ## CONSUMES ## Event45 gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event46
Note:
See TracChangeset
for help on using the changeset viewer.