- Spelling fixes

- Remove deprecated comment from resource.c
- Fix obsdcach.c comment header

svn path=/trunk/; revision=35396
This commit is contained in:
Stefan Ginsberg 2008-08-16 17:53:28 +00:00
parent a878cd2e46
commit 399dc7da51
12 changed files with 18 additions and 27 deletions

View file

@ -226,7 +226,7 @@
cmp eax, ecx cmp eax, ecx
je 2f je 2f
/* Get the next entry and do the deletion*/ /* Get the next entry and do the deletion */
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
push ebx push ebx
mov ebx, [eax] mov ebx, [eax]
@ -569,7 +569,7 @@ _ExpInterlockedPopEntrySListEnd@0:
push ebx push ebx
push ebp push ebp
/* Get desination pointer, exchange value and comperand value/address */ /* Get destination pointer, exchange value and comperand value/address */
mov ebp, ecx mov ebp, ecx
mov ebx, [edx] mov ebx, [edx]
mov ecx, [edx+4] mov ecx, [edx+4]
@ -601,7 +601,7 @@ _ExpInterlockedPopEntrySListEnd@0:
push ebp push ebp
push ebp push ebp
/* Get desination pointer, exchange value and comperand value/address */ /* Get destination pointer, exchange value and comperand value/address */
mov ebp, ecx mov ebp, ecx
mov ebx, [edx] mov ebx, [edx]
mov ecx, [edx+4] mov ecx, [edx+4]
@ -730,7 +730,7 @@ _ExpInterlockedPopEntrySListEnd@0:
push ebp push ebp
push ebp push ebp
/* Get desination pointer, exchange value and comperand value/address */ /* Get destination pointer, exchange value and comperand value/address */
mov ebp, ecx mov ebp, ecx
mov ebx, [edx] mov ebx, [edx]
mov ecx, [edx+4] mov ecx, [edx+4]

View file

@ -239,7 +239,7 @@ _ExInterlockedInsertTailList@12:
/* Restore flags */ /* Restore flags */
popfd popfd
/* check if the list was empty and return NULL */ /* Check if the list was empty and return NULL */
xor eax, edx xor eax, edx
jz 2f jz 2f

View file

@ -986,7 +986,7 @@ ExpInitializeExecutive(IN ULONG Cpu,
/* Setup bugcheck messages */ /* Setup bugcheck messages */
KiInitializeBugCheck(); KiInitializeBugCheck();
/* Setup initial system settings (FIXME: Needs Cm Rewrite) */ /* Setup initial system settings */
CmGetSystemControlValues(LoaderBlock->RegistryBase, CmControlVector); CmGetSystemControlValues(LoaderBlock->RegistryBase, CmControlVector);
/* Load static defaults for Service Pack 1 and add our SVN revision */ /* Load static defaults for Service Pack 1 and add our SVN revision */

View file

@ -6,14 +6,6 @@
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
*/ */
/*
* WARNING:
* This implementation is the Windows NT 5.x one.
* Vista has optimized the OwnerThread entry array and the internals of
* ExpFindEntryForThread and ExpFindFreeEntry probably need to be modified
* accordingly in order to support the WDK.
*/
/* INCLUDES *****************************************************************/ /* INCLUDES *****************************************************************/
#include <ntoskrnl.h> #include <ntoskrnl.h>

View file

@ -26,7 +26,7 @@ IopWorkItemCallback(IN PVOID Parameter)
/* Call the work routine */ /* Call the work routine */
IoWorkItem->WorkerRoutine(DeviceObject, IoWorkItem->Context); IoWorkItem->WorkerRoutine(DeviceObject, IoWorkItem->Context);
/* Dereferenece the device object */ /* Dereference the device object */
ObDereferenceObject(DeviceObject); ObDereferenceObject(DeviceObject);
} }

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS Kernel * PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ob/dirobj.c * FILE: ntoskrnl/ob/obdir.c
* PURPOSE: Manages the Object Manager's Directory Implementation, * PURPOSE: Manages the Object Manager's Directory Implementation,
* such as functions for addition, deletion and lookup into * such as functions for addition, deletion and lookup into
* the Object Manager's namespace. These routines are separate * the Object Manager's namespace. These routines are separate

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS Kernel * PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ob/init.c * FILE: ntoskrnl/ob/obinit.c
* PURPOSE: Handles Object Manager Initialization and Shutdown * PURPOSE: Handles Object Manager Initialization and Shutdown
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
* Eric Kohl * Eric Kohl

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS Kernel * PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ob/create.c * FILE: ntoskrnl/ob/oblife.c
* PURPOSE: Manages the lifetime of an Object, including its creation, * PURPOSE: Manages the lifetime of an Object, including its creation,
* and deletion, as well as setting or querying any of its * and deletion, as well as setting or querying any of its
* information while it is active. Since Object Types are also * information while it is active. Since Object Types are also

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS Kernel * PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ob/symlink.c * FILE: ntoskrnl/ob/oblink.c
* PURPOSE: Implements symbolic links * PURPOSE: Implements symbolic links
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net) * PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
* David Welch (welch@mcmail.com) * David Welch (welch@mcmail.com)

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS Kernel * PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ob/namespce.c * FILE: ntoskrnl/ob/obname.c
* PURPOSE: Manages all functions related to the Object Manager name- * PURPOSE: Manages all functions related to the Object Manager name-
* space, such as finding objects or querying their names. * space, such as finding objects or querying their names.
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)

View file

@ -1,7 +1,7 @@
/* /*
* PROJECT: ReactOS Kernel * PROJECT: ReactOS Kernel
* LICENSE: GPL - See COPYING in the top level directory * LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ob/refderef.c * FILE: ntoskrnl/ob/obref.c
* PURPOSE: Manages the referencing and de-referencing of all Objects, * PURPOSE: Manages the referencing and de-referencing of all Objects,
* as well as the Object Fast Reference implementation. * as well as the Object Fast Reference implementation.
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)

View file

@ -1,10 +1,9 @@
/* /*
* COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS Kernel
* PROJECT: ReactOS kernel * LICENSE: GPL - See COPYING in the top level directory
* FILE: ntoskrnl/ob/sdcache.c * FILE: ntoskrnl/ob/obsdcach.c
* PURPOSE: No purpose listed. * PURPOSE: Security Descriptor Caching
* * PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
* PROGRAMMERS: David Welch (welch@cwcom.net)
*/ */
/* INCLUDES *******************************************************************/ /* INCLUDES *******************************************************************/