mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
- Spelling fixes
- Remove deprecated comment from resource.c - Fix obsdcach.c comment header svn path=/trunk/; revision=35396
This commit is contained in:
parent
a878cd2e46
commit
399dc7da51
12 changed files with 18 additions and 27 deletions
|
@ -226,7 +226,7 @@
|
|||
cmp eax, ecx
|
||||
je 2f
|
||||
|
||||
/* Get the next entry and do the deletion*/
|
||||
/* Get the next entry and do the deletion */
|
||||
#ifdef CONFIG_SMP
|
||||
push ebx
|
||||
mov ebx, [eax]
|
||||
|
@ -569,7 +569,7 @@ _ExpInterlockedPopEntrySListEnd@0:
|
|||
push ebx
|
||||
push ebp
|
||||
|
||||
/* Get desination pointer, exchange value and comperand value/address */
|
||||
/* Get destination pointer, exchange value and comperand value/address */
|
||||
mov ebp, ecx
|
||||
mov ebx, [edx]
|
||||
mov ecx, [edx+4]
|
||||
|
@ -601,7 +601,7 @@ _ExpInterlockedPopEntrySListEnd@0:
|
|||
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 ebx, [edx]
|
||||
mov ecx, [edx+4]
|
||||
|
@ -730,7 +730,7 @@ _ExpInterlockedPopEntrySListEnd@0:
|
|||
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 ebx, [edx]
|
||||
mov ecx, [edx+4]
|
||||
|
|
|
@ -239,7 +239,7 @@ _ExInterlockedInsertTailList@12:
|
|||
/* Restore flags */
|
||||
popfd
|
||||
|
||||
/* check if the list was empty and return NULL */
|
||||
/* Check if the list was empty and return NULL */
|
||||
xor eax, edx
|
||||
jz 2f
|
||||
|
||||
|
|
|
@ -986,7 +986,7 @@ ExpInitializeExecutive(IN ULONG Cpu,
|
|||
/* Setup bugcheck messages */
|
||||
KiInitializeBugCheck();
|
||||
|
||||
/* Setup initial system settings (FIXME: Needs Cm Rewrite) */
|
||||
/* Setup initial system settings */
|
||||
CmGetSystemControlValues(LoaderBlock->RegistryBase, CmControlVector);
|
||||
|
||||
/* Load static defaults for Service Pack 1 and add our SVN revision */
|
||||
|
|
|
@ -6,14 +6,6 @@
|
|||
* 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 *****************************************************************/
|
||||
|
||||
#include <ntoskrnl.h>
|
||||
|
|
|
@ -26,7 +26,7 @@ IopWorkItemCallback(IN PVOID Parameter)
|
|||
/* Call the work routine */
|
||||
IoWorkItem->WorkerRoutine(DeviceObject, IoWorkItem->Context);
|
||||
|
||||
/* Dereferenece the device object */
|
||||
/* Dereference the device object */
|
||||
ObDereferenceObject(DeviceObject);
|
||||
}
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Kernel
|
||||
* 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,
|
||||
* such as functions for addition, deletion and lookup into
|
||||
* the Object Manager's namespace. These routines are separate
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Kernel
|
||||
* 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
|
||||
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
||||
* Eric Kohl
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Kernel
|
||||
* 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,
|
||||
* and deletion, as well as setting or querying any of its
|
||||
* information while it is active. Since Object Types are also
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Kernel
|
||||
* LICENSE: GPL - See COPYING in the top level directory
|
||||
* FILE: ntoskrnl/ob/symlink.c
|
||||
* FILE: ntoskrnl/ob/oblink.c
|
||||
* PURPOSE: Implements symbolic links
|
||||
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
||||
* David Welch (welch@mcmail.com)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Kernel
|
||||
* 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-
|
||||
* space, such as finding objects or querying their names.
|
||||
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* PROJECT: ReactOS Kernel
|
||||
* 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,
|
||||
* as well as the Object Fast Reference implementation.
|
||||
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
||||
|
|
|
@ -1,10 +1,9 @@
|
|||
/*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
* FILE: ntoskrnl/ob/sdcache.c
|
||||
* PURPOSE: No purpose listed.
|
||||
*
|
||||
* PROGRAMMERS: David Welch (welch@cwcom.net)
|
||||
* PROJECT: ReactOS Kernel
|
||||
* LICENSE: GPL - See COPYING in the top level directory
|
||||
* FILE: ntoskrnl/ob/obsdcach.c
|
||||
* PURPOSE: Security Descriptor Caching
|
||||
* PROGRAMMERS: Aleksey Bragin (aleksey@reactos.org)
|
||||
*/
|
||||
|
||||
/* INCLUDES *******************************************************************/
|
||||
|
|
Loading…
Reference in a new issue