]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/SmmCpuRendezvousLibNull/SmmCpuRendezvousLibNull.c
MdePkg: add SmmCpuRendezvousLib.h and SmmCpuRendezvousLibNull implement.
[mirror_edk2.git] / MdePkg / Library / SmmCpuRendezvousLibNull / SmmCpuRendezvousLibNull.c
CommitLineData
8079d4dc
LZ
1/** @file\r
2 SMM CPU Rendezvous sevice implement.\r
3\r
4 Copyright (c) 2022, Intel Corporation. All rights reserved.<BR>\r
5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
6\r
7**/\r
8\r
9#include <Library/DebugLib.h>\r
10#include <Library/SmmCpuRendezvousLib.h>\r
11\r
12/**\r
13 This routine wait for all AP processors to arrive in SMM.\r
14\r
15 @param[in] BlockingMode Blocking mode or non-blocking mode.\r
16\r
17 @retval EFI_SUCCESS All avaiable APs arrived.\r
18 @retval EFI_TIMEOUT Wait for all APs until timeout.\r
19 @retval OTHER Fail to register SMM CPU Rendezvous service Protocol.\r
20**/\r
21EFI_STATUS\r
22EFIAPI\r
23SmmWaitForAllProcessor (\r
24 IN BOOLEAN BlockingMode\r
25 )\r
26{\r
27 ASSERT (FALSE);\r
28 return EFI_SUCCESS;\r
29}\r