Add comments for functions and fix some coding style issue.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6885 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
niry
2008-12-05 23:47:55 +00:00
parent 4e2dd553a6
commit 120db52c6d
12 changed files with 329 additions and 367 deletions

View File

@@ -28,8 +28,8 @@ Abstract:
@param List Pointer to the token list to be searched.
@param Event The event to be checked.
@retval BOOLEAN If TRUE, the specific Event exists in the List. If
FALSE, the specific Event is not in the List.
@retval TRUE The specific Event exists in the List.
@retval False The specific Event is not in the List.
**/
BOOLEAN
@@ -77,8 +77,7 @@ SockTokenExisted (
if (SockTokenExistedInList (&Sock->SndTokenList, Event) ||
SockTokenExistedInList (&Sock->ProcessingSndTokenList, Event) ||
SockTokenExistedInList (&Sock->RcvTokenList, Event) ||
SockTokenExistedInList (&Sock->ListenTokenList, Event)
) {
SockTokenExistedInList (&Sock->ListenTokenList, Event)) {
return TRUE;
}
@@ -152,7 +151,7 @@ SockDestroyChild (
{
EFI_STATUS Status;
ASSERT (Sock && Sock->ProtoHandler);
ASSERT ((Sock != NULL) && (Sock->ProtoHandler != NULL));
if (Sock->IsDestroyed) {
return EFI_SUCCESS;
@@ -258,8 +257,7 @@ SockCreateChild (
/**
Configure the specific socket Sock using configuration data
ConfigData.
Configure the specific socket Sock using configuration data ConfigData.
@param Sock Pointer to the socket to be configured.
@param ConfigData Pointer to the configuration data.
@@ -455,7 +453,7 @@ SockAccept (
RemoveEntryList (ListEntry);
ASSERT (Socket->Parent);
ASSERT (Socket->Parent != NULL);
Socket->Parent->ConnCnt--;