diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-29 08:07:34 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-09-29 08:07:34 +0000 |
commit | f468abda65c3592ae75b301cc0e7def4ea0b90b0 (patch) | |
tree | 4de9694a963f116ff7e69b7a716caaf2f8389136 /MdePkg/Library/DxeServicesTableLib | |
parent | add1f247668a82987607387ad349d7c4e6581902 (diff) | |
download | edk2-platforms-f468abda65c3592ae75b301cc0e7def4ea0b90b0.tar.xz |
Correct file comment for DxeServicesTableLib.c
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6070 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/DxeServicesTableLib')
-rw-r--r-- | MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.c b/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.c index 2c5baea626..aef582204d 100644 --- a/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.c +++ b/MdePkg/Library/DxeServicesTableLib/DxeServicesTableLib.c @@ -1,6 +1,13 @@ /** @file
- This library produce EFI_DXE_SERVICE pointer in global EFI system table. It should
- be linked to a DXE driver who use gBS.
+ This library implement library class DxeServiceTableLib.
+ It produce EFI_DXE_SERVICE pointer in global variable gDS in library's constructure.
+
+ A DXE driver can use gDS pointer to access services in EFI_DXE_SERVICE, if this
+ DXE driver declare that use DxeServicesTableLib library class and link to this
+ library instance.
+
+ Please attention this library instance can not be used after EFI_SYSTEM_TABLE is
+ initialized.
This library contains contruct function to retrieve EFI_DXE_SERIVCE, this construct
function will be invoked in DXE driver's autogen file.
|