From 13e4e2aee7b9dc21a344e4a0bf0c6dc154699371 Mon Sep 17 00:00:00 2001 From: vanjeff Date: Thu, 25 Sep 2008 02:28:09 +0000 Subject: Change name. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5973 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Library/BaseLib/X86MemoryFence.c | 32 ++++++++++++++++++++++++++++++++ MdePkg/Library/BaseLib/x86MemoryFence.c | 32 -------------------------------- 2 files changed, 32 insertions(+), 32 deletions(-) create mode 100644 MdePkg/Library/BaseLib/X86MemoryFence.c delete mode 100644 MdePkg/Library/BaseLib/x86MemoryFence.c (limited to 'MdePkg/Library') diff --git a/MdePkg/Library/BaseLib/X86MemoryFence.c b/MdePkg/Library/BaseLib/X86MemoryFence.c new file mode 100644 index 0000000000..d9646811d5 --- /dev/null +++ b/MdePkg/Library/BaseLib/X86MemoryFence.c @@ -0,0 +1,32 @@ +/** @file + IA-32/x64 MemoryFence(). + + Copyright (c) 2006, Intel Corporation
+ All rights reserved. This program and the accompanying materials + are licensed and made available under the terms and conditions of the BSD License + which accompanies this distribution. The full text of the license may be found at + http://opensource.org/licenses/bsd-license.php + + THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. + +**/ + + + + +/** + Used to serialize load and store operations. + + All loads and stores that proceed calls to this function are guaranteed to be + globally visible when this function returns. + +**/ +VOID +EFIAPI +MemoryFence ( + VOID + ) +{ + return; +} diff --git a/MdePkg/Library/BaseLib/x86MemoryFence.c b/MdePkg/Library/BaseLib/x86MemoryFence.c deleted file mode 100644 index d9646811d5..0000000000 --- a/MdePkg/Library/BaseLib/x86MemoryFence.c +++ /dev/null @@ -1,32 +0,0 @@ -/** @file - IA-32/x64 MemoryFence(). - - Copyright (c) 2006, Intel Corporation
- All rights reserved. This program and the accompanying materials - are licensed and made available under the terms and conditions of the BSD License - which accompanies this distribution. The full text of the license may be found at - http://opensource.org/licenses/bsd-license.php - - THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, - WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - -**/ - - - - -/** - Used to serialize load and store operations. - - All loads and stores that proceed calls to this function are guaranteed to be - globally visible when this function returns. - -**/ -VOID -EFIAPI -MemoryFence ( - VOID - ) -{ - return; -} -- cgit v1.2.3