TianoCore EDK2 master
Loading...
Searching...
No Matches
Non-existing.c
Go to the documentation of this file.
1
9#include <Library/BaseLib.h>
10#include <Library/DebugLib.h>
11
45VOID
46EFIAPI
49 IN VOID *Context1 OPTIONAL,
50 IN VOID *Context2 OPTIONAL,
51 IN VOID *NewStack
52 )
53{
54 //
55 // This function cannot work on x64 platform
56 //
57 ASSERT (FALSE);
58}
59
90VOID
91EFIAPI
94 IN VOID *Context1 OPTIONAL,
95 IN VOID *Context2 OPTIONAL,
96 IN VOID *NewStack
97 )
98{
99 //
100 // This function cannot work on x64 platform
101 //
102 ASSERT (FALSE);
103}
104
132VOID
133EFIAPI
135 IN UINT16 Cs,
136 IN UINT64 EntryPoint,
137 IN UINT64 Context1 OPTIONAL,
138 IN UINT64 Context2 OPTIONAL,
139 IN UINT64 NewStack
140 )
141{
142 //
143 // This function cannot work on x64 platform.
144 //
145 ASSERT (FALSE);
146}
VOID(EFIAPI * SWITCH_STACK_ENTRY_POINT)(IN VOID *Context1 OPTIONAL, IN VOID *Context2 OPTIONAL)
Definition: BaseLib.h:5019
#define FALSE
Definition: Base.h:307
#define IN
Definition: Base.h:279
VOID EFIAPI InternalX86EnablePaging32(IN SWITCH_STACK_ENTRY_POINT EntryPoint, IN VOID *Context1 OPTIONAL, IN VOID *Context2 OPTIONAL, IN VOID *NewStack)
Definition: Non-existing.c:47
VOID EFIAPI InternalX86DisablePaging32(IN SWITCH_STACK_ENTRY_POINT EntryPoint, IN VOID *Context1 OPTIONAL, IN VOID *Context2 OPTIONAL, IN VOID *NewStack)
Definition: Non-existing.c:92
VOID EFIAPI InternalX86EnablePaging64(IN UINT16 Cs, IN UINT64 EntryPoint, IN UINT64 Context1 OPTIONAL, IN UINT64 Context2 OPTIONAL, IN UINT64 NewStack)
Definition: Non-existing.c:134