[NTOSKRNL]

spelling fixes only
no code changes

svn path=/trunk/; revision=67386
This commit is contained in:
Christoph von Wittich
2015-04-24 19:40:38 +00:00
parent 360a70846b
commit 91188af8ad
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -827,7 +827,7 @@ CmpInitializeMachineDependentConfiguration(IN PLOADER_PARAMETER_BLOCK LoaderBloc
if (BiosVersion) ExFreePoolWithTag(BiosVersion, TAG_CM);
Quickie:
/* Close the procesor handle */
/* Close the processor handle */
NtClose(KeyHandle);
return STATUS_SUCCESS;
}
+4 -4
View File
@@ -78,7 +78,7 @@ ExpGetGlobalAtomTable(VOID)
* Pointer to RTL_ATOM
*
* @return STATUS_SUCCESS in case of success, proper error code
* othwerwise.
* otherwise.
*
* @remarks None
*
@@ -198,7 +198,7 @@ NtAddAtom(IN PWSTR AtomName,
* Atom identifier
*
* @return STATUS_SUCCESS in case of success, proper error code
* othwerwise.
* otherwise.
*
* @remarks None
*
@@ -235,7 +235,7 @@ NtDeleteAtom(IN RTL_ATOM Atom)
* Pointer to RTL_ATOM
*
* @return STATUS_SUCCESS in case of success, proper error code
* othwerwise.
* otherwise.
*
* @remarks None
*
@@ -360,7 +360,7 @@ NtFindAtom(IN PWSTR AtomName,
* buffer size
*
* @return STATUS_SUCCESS in case of success, proper error code
* othwerwise.
* otherwise.
*
* @remarks None
*
+2 -2
View File
@@ -221,7 +221,7 @@ ExCompareExchangeCallBack(IN OUT PEX_CALLBACK CallBack,
/* It failed, check if we had a block */
if (NewBlock)
{
/* We did, remove the refernces that we had added */
/* We did, remove the references that we had added */
ExfReleaseRundownProtectionEx(&NewBlock->RundownProtect,
MAX_FAST_REFS + 1);
}
@@ -333,7 +333,7 @@ ExpInitializeCallbacks(VOID)
* @implemented
*
* Opens or creates a Callback Object. Creates only if Create is true.
* Allows multiple Callback Functions to be registred only if
* Allows multiple Callback Functions to be registered only if
* AllowMultipleCallbacks is true.
* See: http://www.osronline.com/ddkx/kmarch/k102_967m.htm
* http://www.osronline.com/article.cfm?id=24
+1 -1
View File
@@ -103,7 +103,7 @@ ProbeForRead(IN CONST VOID *Address,
IN SIZE_T Length,
IN ULONG Alignment)
{
ULONG_PTR Last, Current = (ULONG_PTR)Address;
ULONG_PTR Last, Current = (ULONG_PTR)Address;
PAGED_CODE();
/* Only probe if we have a valid length */
+2 -2
View File
@@ -31,7 +31,7 @@ FASTCALL
ExEnterCriticalRegionAndAcquireFastMutexUnsafe(IN OUT PFAST_MUTEX FastMutex)
{
/* Call the inline */
_ExEnterCriticalRegionAndAcquireFastMutexUnsafe(FastMutex);
_ExEnterCriticalRegionAndAcquireFastMutexUnsafe(FastMutex);
}
/*
@@ -42,7 +42,7 @@ FASTCALL
ExReleaseFastMutexUnsafeAndLeaveCriticalRegion(IN OUT PFAST_MUTEX FastMutex)
{
/* Call the inline */
_ExReleaseFastMutexUnsafeAndLeaveCriticalRegion(FastMutex);
_ExReleaseFastMutexUnsafeAndLeaveCriticalRegion(FastMutex);
}
/*
+3 -3
View File
@@ -1,7 +1,7 @@
/*
* PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ex/init.c
* FILE: ntoskrnl/ex/handle.c
* PURPOSE: Generic Executive Handle Tables
* PROGRAMMERS: Alex Ionescu ([email protected])
* Thomas Weidenmueller <[email protected]>
@@ -516,7 +516,7 @@ ExpAllocateHandleTableEntrySlow(IN PHANDLE_TABLE HandleTable,
Mid = ExpAllocateMidLevelTable(HandleTable, DoInit, &Low);
if (!Mid)
{
/* We failed, free the high level table as welll */
/* We failed, free the high level table as well */
ExpFreeTablePagedPool(HandleTable->QuotaProcess,
High,
SizeOfHandle(HIGH_LEVEL_ENTRIES));
@@ -928,7 +928,7 @@ ExDestroyHandleTable(IN PHANDLE_TABLE HandleTable,
/* Remove the handle from the list */
ExRemoveHandleTable(HandleTable);
/* Check if we have a desotry callback */
/* Check if we have a destroy callback */
if (DestroyHandleProcedure)
{
/* FIXME: */
+1 -1
View File
@@ -237,7 +237,7 @@ NtSetDefaultLocale(IN BOOLEAN UserProfile,
UserKey = NULL;
}
/* Initailize the object attributes */
/* Initialize the object attributes */
InitializeObjectAttributes(&ObjectAttributes,
&KeyName,
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE,