summaryrefslogtreecommitdiff
path: root/MdeModulePkg/Include/Protocol/Dpc.h
diff options
context:
space:
mode:
authorpkandel <pkandel@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-11 14:17:23 +0000
committerpkandel <pkandel@6f19259b-4bc3-4df7-8a09-765794883524>2009-06-11 14:17:23 +0000
commite9b67286ad4428d63e2495f38b71273b81e0846f (patch)
treef1e2ae7fdb1a10f6138332ac9780ea980588d092 /MdeModulePkg/Include/Protocol/Dpc.h
parent9277fdf8e7e6e5192f723f31fd205a9297c6a0aa (diff)
downloadedk2-e9b67286ad4428d63e2495f38b71273b81e0846f.zip
edk2-e9b67286ad4428d63e2495f38b71273b81e0846f.tar.gz
edk2-e9b67286ad4428d63e2495f38b71273b81e0846f.tar.bz2
Committing changes to the comments, to improve code documentation.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8533 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Include/Protocol/Dpc.h')
-rw-r--r--MdeModulePkg/Include/Protocol/Dpc.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/MdeModulePkg/Include/Protocol/Dpc.h b/MdeModulePkg/Include/Protocol/Dpc.h
index 4b667d1..55b7a0b 100644
--- a/MdeModulePkg/Include/Protocol/Dpc.h
+++ b/MdeModulePkg/Include/Protocol/Dpc.h
@@ -48,7 +48,7 @@ VOID
Add a Deferred Procedure Call to the end of the DPC queue.
@param This Protocol instance pointer.
- @param DpcTpl The EFI_TPL that the DPC should be invoked.
+ @param DpcTpl The EFI_TPL that the DPC should invoke.
@param DpcProcedure Pointer to the DPC's function.
@param DpcContext Pointer to the DPC's context. Passed to DpcProcedure
when DpcProcedure is invoked.
@@ -70,10 +70,11 @@ EFI_STATUS
);
/**
- Dispatch the queue of DPCs. ALL DPCs that have been queued with a DpcTpl
- value greater than or equal to the current TPL are invoked in the order that
- they were queued. DPCs with higher DpcTpl values are invoked before DPCs with
- lower DpcTpl values.
+ Dispatch the queue of DPCs.
+
+ DPCs with DpcTpl value greater than the current TPL value are queued, and then DPCs
+ with DpcTpl value lower than the current TPL value are queued. All DPCs in the first group (higher DpcTpl values)
+ are invoked before DPCs in the second group (lower DpcTpl values).
@param This Protocol instance pointer.