Changeset 80721 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/UefiCpuPkg/CpuMpPei/CpuMpPei.h
- Timestamp:
- Sep 11, 2019 8:46:37 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133262
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 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-129237 /vendor/edk2/current 103735-103757,103769-103776,129194-133213
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/UefiCpuPkg/CpuMpPei/CpuMpPei.h
r77662 r80721 2 2 Definitions to install Multiple Processor PPI. 3 3 4 Copyright (c) 2015 - 2016, Intel Corporation. All rights reserved.<BR> 5 This program and the accompanying materials 6 are licensed and made available under the terms and conditions of the BSD License 7 which accompanies this distribution. The full text of the license may be found at 8 http://opensource.org/licenses/bsd-license.php 9 10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, 11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. 4 Copyright (c) 2015 - 2019, Intel Corporation. All rights reserved.<BR> 5 SPDX-License-Identifier: BSD-2-Clause-Patent 12 6 13 7 **/ … … 22 16 #include <Ppi/SecPlatformInformation2.h> 23 17 #include <Ppi/EndOfPeiPhase.h> 18 #include <Ppi/MpServices2.h> 24 19 25 20 #include <Library/BaseLib.h> … … 403 398 ); 404 399 400 /** 401 Initializes MP and exceptions handlers. 402 403 @param PeiServices The pointer to the PEI Services Table. 404 405 @retval EFI_SUCCESS MP was successfully initialized. 406 @retval others Error occurred in MP initialization. 407 408 **/ 409 EFI_STATUS 410 InitializeCpuMpWorker ( 411 IN CONST EFI_PEI_SERVICES **PeiServices 412 ); 413 414 /** 415 Enabl/setup stack guard for each processor if PcdCpuStackGuard is set to TRUE. 416 417 Doing this in the memory-discovered callback is to make sure the Stack Guard 418 feature to cover as most PEI code as possible. 419 420 @param[in] PeiServices General purpose services available to every PEIM. 421 @param[in] NotifyDescriptor The notification structure this PEIM registered on install. 422 @param[in] Ppi The memory discovered PPI. Not used. 423 424 @retval EFI_SUCCESS The function completed successfully. 425 @retval others There's error in MP initialization. 426 **/ 427 EFI_STATUS 428 EFIAPI 429 MemoryDiscoveredPpiNotifyCallback ( 430 IN EFI_PEI_SERVICES **PeiServices, 431 IN EFI_PEI_NOTIFY_DESCRIPTOR *NotifyDescriptor, 432 IN VOID *Ppi 433 ); 434 435 extern EFI_PEI_NOTIFY_DESCRIPTOR mPostMemNotifyList[]; 436 405 437 #endif
Note:
See TracChangeset
for help on using the changeset viewer.