Author: cwittich
Date: Fri Apr 24 19:40:38 2015
New Revision: 67386
URL:
http://svn.reactos.org/svn/reactos?rev=67386&view=rev
Log:
[NTOSKRNL]
spelling fixes only
no code changes
Modified:
trunk/reactos/ntoskrnl/config/powerpc/cmhardwr.c
trunk/reactos/ntoskrnl/ex/atom.c
trunk/reactos/ntoskrnl/ex/callback.c
trunk/reactos/ntoskrnl/ex/exintrin.c
trunk/reactos/ntoskrnl/ex/fmutex.c
trunk/reactos/ntoskrnl/ex/handle.c
trunk/reactos/ntoskrnl/ex/locale.c
Modified: trunk/reactos/ntoskrnl/config/powerpc/cmhardwr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/config/powerpc/cm…
==============================================================================
--- trunk/reactos/ntoskrnl/config/powerpc/cmhardwr.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/config/powerpc/cmhardwr.c [iso-8859-1] Fri Apr 24 19:40:38
2015
@@ -827,7 +827,7 @@
if (BiosVersion) ExFreePoolWithTag(BiosVersion, TAG_CM);
Quickie:
- /* Close the procesor handle */
+ /* Close the processor handle */
NtClose(KeyHandle);
return STATUS_SUCCESS;
}
Modified: trunk/reactos/ntoskrnl/ex/atom.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/atom.c?rev=673…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/atom.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/atom.c [iso-8859-1] Fri Apr 24 19:40:38 2015
@@ -78,7 +78,7 @@
* Pointer to RTL_ATOM
*
* @return STATUS_SUCCESS in case of success, proper error code
- * othwerwise.
+ * otherwise.
*
* @remarks None
*
@@ -198,7 +198,7 @@
* Atom identifier
*
* @return STATUS_SUCCESS in case of success, proper error code
- * othwerwise.
+ * otherwise.
*
* @remarks None
*
@@ -235,7 +235,7 @@
* Pointer to RTL_ATOM
*
* @return STATUS_SUCCESS in case of success, proper error code
- * othwerwise.
+ * otherwise.
*
* @remarks None
*
@@ -360,7 +360,7 @@
* buffer size
*
* @return STATUS_SUCCESS in case of success, proper error code
- * othwerwise.
+ * otherwise.
*
* @remarks None
*
Modified: trunk/reactos/ntoskrnl/ex/callback.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/callback.c?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/callback.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/callback.c [iso-8859-1] Fri Apr 24 19:40:38 2015
@@ -221,7 +221,7 @@
/* 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 @@
* @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
Modified: trunk/reactos/ntoskrnl/ex/exintrin.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/exintrin.c?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/exintrin.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/exintrin.c [iso-8859-1] Fri Apr 24 19:40:38 2015
@@ -103,7 +103,7 @@
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 */
Modified: trunk/reactos/ntoskrnl/ex/fmutex.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/fmutex.c?rev=6…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/fmutex.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/fmutex.c [iso-8859-1] Fri Apr 24 19:40:38 2015
@@ -31,7 +31,7 @@
ExEnterCriticalRegionAndAcquireFastMutexUnsafe(IN OUT PFAST_MUTEX FastMutex)
{
/* Call the inline */
- _ExEnterCriticalRegionAndAcquireFastMutexUnsafe(FastMutex);
+ _ExEnterCriticalRegionAndAcquireFastMutexUnsafe(FastMutex);
}
/*
@@ -42,7 +42,7 @@
ExReleaseFastMutexUnsafeAndLeaveCriticalRegion(IN OUT PFAST_MUTEX FastMutex)
{
/* Call the inline */
- _ExReleaseFastMutexUnsafeAndLeaveCriticalRegion(FastMutex);
+ _ExReleaseFastMutexUnsafeAndLeaveCriticalRegion(FastMutex);
}
/*
Modified: trunk/reactos/ntoskrnl/ex/handle.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/handle.c?rev=6…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/handle.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/handle.c [iso-8859-1] Fri Apr 24 19:40:38 2015
@@ -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 (alex.ionescu(a)reactos.org)
* Thomas Weidenmueller <w3seek(a)reactos.com>
@@ -516,7 +516,7 @@
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 @@
/* 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: */
Modified: trunk/reactos/ntoskrnl/ex/locale.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/locale.c?rev=6…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/locale.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/locale.c [iso-8859-1] Fri Apr 24 19:40:38 2015
@@ -237,7 +237,7 @@
UserKey = NULL;
}
- /* Initailize the object attributes */
+ /* Initialize the object attributes */
InitializeObjectAttributes(&ObjectAttributes,
&KeyName,
OBJ_CASE_INSENSITIVE | OBJ_KERNEL_HANDLE,