Add missing documentation and fix formatting
This commit is contained in:
@@ -97,6 +97,13 @@ KE::BootInformation::GetKernelParameter(IN PCWSTR ParameterName,
|
||||
return STATUS_NOT_FOUND;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves a pointer to the list of memory descriptors.
|
||||
*
|
||||
* @return This routine returns a pointer to the list of memory descriptors.
|
||||
*
|
||||
* @since XT 1.0
|
||||
*/
|
||||
XTAPI
|
||||
PLIST_ENTRY
|
||||
KE::BootInformation::GetMemoryDescriptors(VOID)
|
||||
|
@@ -192,8 +192,8 @@ XTCLINK
|
||||
XTAPI
|
||||
VOID
|
||||
KeInitializeDpc(IN PKDPC Dpc,
|
||||
IN PKDEFERRED_ROUTINE DpcRoutine,
|
||||
IN PVOID DpcContext)
|
||||
IN PKDEFERRED_ROUTINE DpcRoutine,
|
||||
IN PVOID DpcContext)
|
||||
{
|
||||
KE::Dpc::InitializeDpc(Dpc, DpcRoutine, DpcContext);
|
||||
|
||||
@@ -267,8 +267,8 @@ XTCLINK
|
||||
XTAPI
|
||||
VOID
|
||||
KeInitializeSemaphore(IN PKSEMAPHORE Semaphore,
|
||||
IN LONG Count,
|
||||
IN LONG Limit)
|
||||
IN LONG Count,
|
||||
IN LONG Limit)
|
||||
{
|
||||
KE::Semaphore::InitializeSemaphore(Semaphore, Count, Limit);
|
||||
}
|
||||
@@ -350,9 +350,9 @@ XTCLINK
|
||||
XTAPI
|
||||
LONG
|
||||
KeReleaseSemaphore(IN PKSEMAPHORE Semaphore,
|
||||
IN KPRIORITY Increment,
|
||||
IN LONG Adjustment,
|
||||
IN BOOLEAN Wait)
|
||||
IN KPRIORITY Increment,
|
||||
IN LONG Adjustment,
|
||||
IN BOOLEAN Wait)
|
||||
{
|
||||
return KE::Semaphore::ReleaseSemaphore(Semaphore, Increment, Adjustment, Wait);
|
||||
}
|
||||
|
@@ -41,10 +41,10 @@ KE::KProcess::GetInitialProcess(VOID)
|
||||
XTAPI
|
||||
VOID
|
||||
KE::KProcess::InitializeProcess(IN OUT PKPROCESS Process,
|
||||
IN KPRIORITY Priority,
|
||||
IN KAFFINITY Affinity,
|
||||
IN PULONG_PTR DirectoryTable,
|
||||
IN BOOLEAN Alignment)
|
||||
IN KPRIORITY Priority,
|
||||
IN KAFFINITY Affinity,
|
||||
IN PULONG_PTR DirectoryTable,
|
||||
IN BOOLEAN Alignment)
|
||||
{
|
||||
/* Initialize process dispatcher header */
|
||||
Process->Header.Type = ProcessObject;
|
||||
|
Reference in New Issue
Block a user