启动服务和运行时服务都需要在DXE阶段初始化系统表后才可以使用,使用'gST->'调用表或者'gBS'和'gRT'调用其中的服务
Boot Services
1.Event, Timer, and Task Priority Services
事件,定时器,优先级
CreateEvent
创建事件
CreateEventEx
CloseEvent
SignalEvent
WaitForEvent
CheckEvent
SetTimer
RaiseTPL
RestoreTPL
2.Memory Allocation Services
AllocatePages
FreePages
GetMemoryMap
AllocatePool
使用AllocatePool分配内存后用完需调用FreePool释放
FreePool
3.Protocol Handler Services
安装卸载Protocol
InstallProtocolInterface
UninstallProtocolInterface
<