1 | /** @file
|
---|
2 | Null instance of CPU Library.
|
---|
3 |
|
---|
4 | Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
---|
5 | SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
6 |
|
---|
7 | **/
|
---|
8 |
|
---|
9 | #include <Library/CpuLib.h>
|
---|
10 |
|
---|
11 | /**
|
---|
12 | Places the CPU in a sleep state until an interrupt is received.
|
---|
13 |
|
---|
14 | Places the CPU in a sleep state until an interrupt is received. If interrupts
|
---|
15 | are disabled prior to calling this function, then the CPU will be placed in a
|
---|
16 | sleep state indefinitely.
|
---|
17 |
|
---|
18 | **/
|
---|
19 | VOID
|
---|
20 | EFIAPI
|
---|
21 | CpuSleep (
|
---|
22 | VOID
|
---|
23 | )
|
---|
24 | {
|
---|
25 | }
|
---|
26 |
|
---|
27 | /**
|
---|
28 | Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
|
---|
29 |
|
---|
30 | Flushes all the Translation Lookaside Buffers(TLB) entries in a CPU.
|
---|
31 |
|
---|
32 | **/
|
---|
33 | VOID
|
---|
34 | EFIAPI
|
---|
35 | CpuFlushTlb (
|
---|
36 | VOID
|
---|
37 | )
|
---|
38 | {
|
---|
39 | }
|
---|