diff options
author | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-06 07:46:22 +0000 |
---|---|---|
committer | bxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-06 07:46:22 +0000 |
commit | a69c49fc119ae22e62acd00da011fb9e2bfa433f (patch) | |
tree | 1d499e6a13a10472d235f18be136024ad442f5a4 /MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c | |
parent | e0f8d087ae422c613267650487686581b1081fc8 (diff) | |
download | edk2-platforms-a69c49fc119ae22e62acd00da011fb9e2bfa433f.tar.xz |
1. Simplified PalCallStatic.s's by removing unnecessary condition testings.
2. Fixed a logical error in Synchronization.c which caused InterlockedIncrement() and InterlockedDecrement() to hang.
3. Replaced the pseudo-implementation of GetInterruptState() with a real version.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@793 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c')
-rw-r--r-- | MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c b/MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c index 478cac8c91..0097d991eb 100644 --- a/MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c +++ b/MdePkg/Library/BaseLib/Ipf/CpuBreakpoint.c @@ -98,25 +98,6 @@ EnableInterrupts ( }
/**
- Retrieves the current CPU interrupt state.
-
- Retrieves the current CPU interrupt state. Returns TRUE is interrupts are
- currently enabled. Otherwise returns FALSE.
-
- @retval TRUE CPU interrupts are enabled.
- @retval FALSE CPU interrupts are disabled.
-
-**/
-BOOLEAN
-EFIAPI
-GetInterruptState (
- VOID
- )
-{
- return FALSE;
-}
-
-/**
Enables CPU interrupts for the smallest window required to capture any
pending interrupts.
|