forked from xt-sys/exectos
		
	Add missing routines documentation
This commit is contained in:
		@@ -238,6 +238,19 @@ XtpBootSequence(IN PEFI_FILE_HANDLE BootDir,
 | 
				
			|||||||
    return STATUS_EFI_SUCCESS;
 | 
					    return STATUS_EFI_SUCCESS;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * Initializes and maps the kernel initialization block.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @param MemoryMappings
 | 
				
			||||||
 | 
					 *        Supplies a pointer to linked list containing all memory mappings.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @param VirtualAddress
 | 
				
			||||||
 | 
					 *        Supplies a pointer to the next valid, free and available virtual address.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @return This routine returns a status code.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @since XT 1.0
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
EFI_STATUS
 | 
					EFI_STATUS
 | 
				
			||||||
XtpInitializeLoaderBlock(IN PLIST_ENTRY MemoryMappings,
 | 
					XtpInitializeLoaderBlock(IN PLIST_ENTRY MemoryMappings,
 | 
				
			||||||
                         IN PVOID *VirtualAddress)
 | 
					                         IN PVOID *VirtualAddress)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -28,6 +28,16 @@ PVOID EfiLoaderStack;
 | 
				
			|||||||
CPPORT EfiSerialPort;
 | 
					CPPORT EfiSerialPort;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * Gets a pointer to the stack address.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @param Stack
 | 
				
			||||||
 | 
					 *        Supplies a pointer to the memory area where address to the current stack will be stored.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @return This routine does not return any value.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @since XT 1.0
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
VOID BlGetStackPointer(OUT PVOID *Stack)
 | 
					VOID BlGetStackPointer(OUT PVOID *Stack)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    *Stack = EfiLoaderStack;
 | 
					    *Stack = EfiLoaderStack;
 | 
				
			||||||
@@ -348,6 +358,13 @@ BlRegisterXtLoaderProtocol()
 | 
				
			|||||||
                                                                  &EfiLdrProtocol);
 | 
					                                                                  &EfiLdrProtocol);
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/**
 | 
				
			||||||
 | 
					 * Callback routine called right after new stack is created.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @return This routine returns a status code.
 | 
				
			||||||
 | 
					 *
 | 
				
			||||||
 | 
					 * @since XT 1.0
 | 
				
			||||||
 | 
					 */
 | 
				
			||||||
EFI_STATUS
 | 
					EFI_STATUS
 | 
				
			||||||
BlStartNewStack()
 | 
					BlStartNewStack()
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user