]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseLib/X86MemoryFence.c
MdePkg: add null version of RngLib
[mirror_edk2.git] / MdePkg / Library / BaseLib / X86MemoryFence.c
CommitLineData
e1f414b6 1/** @file\r
2 IA-32/x64 MemoryFence().\r
3\r
bb817c56 4 Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR>\r
9344f092 5 SPDX-License-Identifier: BSD-2-Clause-Patent\r
e1f414b6 6\r
e1f414b6 7**/\r
8\r
1efcc4ae 9\r
f734a10a 10\r
e1f414b6 11\r
12/**\r
13 Used to serialize load and store operations.\r
14\r
15 All loads and stores that proceed calls to this function are guaranteed to be\r
16 globally visible when this function returns.\r
17\r
18**/\r
19VOID\r
20EFIAPI\r
21MemoryFence (\r
22 VOID\r
23 )\r
24{\r
25 return;\r
26}\r