Author: hbelusca
Date: Thu Apr 4 20:11:17 2013
New Revision: 58679
URL:
http://svn.reactos.org/svn/reactos?rev=58679&view=rev
Log:
[REACTOS]
Fix TOO MANY !! :(((( "initialize" misspellings.
Note1: One remains in subsystems/csr/csrsrv/init.c, but will be corrected in my future
csrss branch merging.
Note2: In ntoskrnl/se/semgr.c, one tries to create the
"LSA_AUTHENTICATION_INITALIZED" event. This is ROS-SPECIFIC !!!! In the sense
that it doesn't exist on Windows. Instead, the
"LSA_AUTHENTICATION_INITIALIZED" exists. Correct that fact.
Modified:
trunk/reactos/base/shell/cmd/readme2.txt
trunk/reactos/boot/freeldr/freeldr/arch/amd64/winldr.c
trunk/reactos/boot/freeldr/freeldr/arch/i386/winldr.c
trunk/reactos/boot/freeldr/freeldr/arch/powerpc/mboot.c
trunk/reactos/dll/win32/shell32/dde.cpp
trunk/reactos/drivers/filesystems/cdfs/cdfs.c
trunk/reactos/drivers/filesystems/mup/mup.c
trunk/reactos/drivers/filesystems/ntfs/ntfs.c
trunk/reactos/drivers/multimedia/audio/mpu401_nt4/mpu401.c
trunk/reactos/drivers/multimedia/audio/sndblst.old/sndblst.c
trunk/reactos/drivers/multimedia/audio/sound/sb16.c
trunk/reactos/drivers/multimedia/audio/sound/sound.c
trunk/reactos/drivers/network/tcpip/datalink/lan.c
trunk/reactos/drivers/parallel/parallel/parallel.c
trunk/reactos/drivers/storage/class/class2/class2.c
trunk/reactos/drivers/storage/classpnp/obsolete.c
trunk/reactos/drivers/storage/classpnp/power.c
trunk/reactos/hal/halppc/generic/display.c
trunk/reactos/hal/halppc/generic/dma.c
trunk/reactos/hal/halppc/up/halinit_up.c
trunk/reactos/hal/halx86/apic/apic.c
trunk/reactos/hal/halx86/apic/halinit_apic.c
trunk/reactos/hal/halx86/generic/dma.c
trunk/reactos/hal/halx86/mp/halinit_mp.c
trunk/reactos/hal/halx86/up/halinit_mini.c
trunk/reactos/hal/halx86/up/halinit_up.c
trunk/reactos/hal/halx86/xbox/halinit_xbox.c
trunk/reactos/lib/cmlib/hiveinit.c
trunk/reactos/lib/smlib/smclient.c
trunk/reactos/ntoskrnl/ex/event.c
trunk/reactos/ntoskrnl/ex/evtpair.c
trunk/reactos/ntoskrnl/ex/mutant.c
trunk/reactos/ntoskrnl/ex/zone.c
trunk/reactos/ntoskrnl/io/iomgr/driver.c
trunk/reactos/ntoskrnl/io/iomgr/util.c
trunk/reactos/ntoskrnl/ke/amd64/krnlinit.c
trunk/reactos/ntoskrnl/ke/i386/usercall_asm.S
trunk/reactos/ntoskrnl/ke/thrdobj.c
trunk/reactos/ntoskrnl/ke/timerobj.c
trunk/reactos/ntoskrnl/se/semgr.c
trunk/reactos/win32ss/drivers/font/ftfd/font.c
trunk/reactos/win32ss/user/ntuser/winsta.c
Modified: trunk/reactos/base/shell/cmd/readme2.txt
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/cmd/readme2.txt…
==============================================================================
--- trunk/reactos/base/shell/cmd/readme2.txt [iso-8859-1] (original)
+++ trunk/reactos/base/shell/cmd/readme2.txt [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -1,8 +1,8 @@
-General Overview of How THings Work
+General Overview of How Things Work
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
First it comes into _main in cmd.c(1811). The command line params are taking in and if
it is unicode it uses CommandLineToArgvW.
This can cause a problem on older machines and that is why we have our own custom
_CommandLineToArgvW to help this along.
-We pull in the launch directory as the inital dir and set that in _tchdir. We make a
handle to the default console out using CreateFile.
+We pull in the launch directory as the initial dir and set that in _tchdir. We make a
handle to the default console out using CreateFile.
Then we call Initialize(). Here we need to load ntdll.dll if it isnt loaded(windows 9x
machines).
We also setup some global vars like default io handles and nErrorLevel and set %prompt%
to $P$G.
Modified: trunk/reactos/boot/freeldr/freeldr/arch/amd64/winldr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/amd64/winldr.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/amd64/winldr.c [iso-8859-1] Thu Apr 4
20:11:17 2013
@@ -343,7 +343,7 @@
/* Disable Interrupts */
_disable();
- /* Re-initalize EFLAGS */
+ /* Re-initialize EFLAGS */
__writeeflags(0);
/* Set the new PML4 */
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/winldr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/i386/winldr.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/i386/winldr.c [iso-8859-1] Thu Apr 4 20:11:17
2013
@@ -429,7 +429,7 @@
// Disable Interrupts
_disable();
- // Re-initalize EFLAGS
+ // Re-initialize EFLAGS
__writeeflags(0);
// Set the PDBR
Modified: trunk/reactos/boot/freeldr/freeldr/arch/powerpc/mboot.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/powerpc/mboot.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/powerpc/mboot.c [iso-8859-1] Thu Apr 4
20:11:17 2013
@@ -672,7 +672,7 @@
* FrLdrMapKernel
* INTERNAL
*
- * Maps the Kernel into memory, does PE Section Mapping, initalizes the
+ * Maps the Kernel into memory, does PE Section Mapping, initializes the
* uninitialized data sections, and relocates the image.
*
* Params:
Modified: trunk/reactos/dll/win32/shell32/dde.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/dde.cpp?…
==============================================================================
--- trunk/reactos/dll/win32/shell32/dde.cpp [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/dde.cpp [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -122,7 +122,7 @@
* can use them.
*
* PARAMS
- * bInit [I] TRUE to initialize the services, FALSE to uninitalize.
+ * bInit [I] TRUE to initialize the services, FALSE to uninitialize.
*
* RETURNS
* Nothing.
Modified: trunk/reactos/drivers/filesystems/cdfs/cdfs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/cdfs/c…
==============================================================================
--- trunk/reactos/drivers/filesystems/cdfs/cdfs.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/cdfs/cdfs.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -43,7 +43,7 @@
DriverEntry(PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath)
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/filesystems/mup/mup.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/mup/mu…
==============================================================================
--- trunk/reactos/drivers/filesystems/mup/mup.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/mup/mup.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -37,7 +37,7 @@
/* FUNCTIONS ****************************************************************/
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/filesystems/ntfs/ntfs.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/filesystems/ntfs/n…
==============================================================================
--- trunk/reactos/drivers/filesystems/ntfs/ntfs.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/filesystems/ntfs/ntfs.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -42,7 +42,7 @@
DriverEntry(PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath)
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/multimedia/audio/mpu401_nt4/mpu401.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/multimedia/audio/m…
==============================================================================
--- trunk/reactos/drivers/multimedia/audio/mpu401_nt4/mpu401.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/multimedia/audio/mpu401_nt4/mpu401.c [iso-8859-1] Thu Apr 4
20:11:17 2013
@@ -361,7 +361,7 @@
DriverEntry(PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath)
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/multimedia/audio/sndblst.old/sndblst.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/multimedia/audio/s…
==============================================================================
--- trunk/reactos/drivers/multimedia/audio/sndblst.old/sndblst.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/multimedia/audio/sndblst.old/sndblst.c [iso-8859-1] Thu Apr 4
20:11:17 2013
@@ -420,7 +420,7 @@
DriverEntry(PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath)
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/multimedia/audio/sound/sb16.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/multimedia/audio/s…
==============================================================================
--- trunk/reactos/drivers/multimedia/audio/sound/sb16.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/multimedia/audio/sound/sb16.c [iso-8859-1] Thu Apr 4 20:11:17
2013
@@ -24,7 +24,7 @@
DriverEntry(PDRIVER_OBJECT DriverObject,
PUNICODE_STRING RegistryPath)
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/multimedia/audio/sound/sound.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/multimedia/audio/s…
==============================================================================
--- trunk/reactos/drivers/multimedia/audio/sound/sound.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/multimedia/audio/sound/sound.c [iso-8859-1] Thu Apr 4 20:11:17
2013
@@ -71,7 +71,7 @@
NTSTATUS ModuleEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/network/tcpip/datalink/lan.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/network/tcpip/data…
==============================================================================
--- trunk/reactos/drivers/network/tcpip/datalink/lan.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/network/tcpip/datalink/lan.c [iso-8859-1] Thu Apr 4 20:11:17
2013
@@ -705,7 +705,7 @@
//NDIS_STATUS NdisStatus;
IP_ADDRESS DefaultMask;
- /* Initalize the default unspecified address (0.0.0.0) */
+ /* Initialize the default unspecified address (0.0.0.0) */
AddrInitIPv4(&DefaultMask, 0);
if (Context->State == LAN_STATE_STARTED &&
!Context->Adapter->CompletingReset)
Modified: trunk/reactos/drivers/parallel/parallel/parallel.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/parallel/parallel/…
==============================================================================
--- trunk/reactos/drivers/parallel/parallel/parallel.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/parallel/parallel/parallel.c [iso-8859-1] Thu Apr 4 20:11:17
2013
@@ -122,7 +122,7 @@
NTSTATUS NTAPI
DriverEntry(PDRIVER_OBJECT DriverObject, PUNICODE_STRING RegistryPath)
/*
- * FUNCTION: Called by the system to initalize the driver
+ * FUNCTION: Called by the system to initialize the driver
* ARGUMENTS:
* DriverObject = object describing this driver
* RegistryPath = path to our configuration entries
Modified: trunk/reactos/drivers/storage/class/class2/class2.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/class/clas…
==============================================================================
--- trunk/reactos/drivers/storage/class/class2/class2.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/class/class2/class2.c [iso-8859-1] Thu Apr 4 20:11:17
2013
@@ -3104,7 +3104,7 @@
Routine Description:
- This routine reinitalizes the necessary fields, and sends the request
+ This routine reinitializes the necessary fields, and sends the request
to the port driver.
Arguments:
Modified: trunk/reactos/drivers/storage/classpnp/obsolete.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/classpnp/o…
==============================================================================
--- trunk/reactos/drivers/storage/classpnp/obsolete.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/classpnp/obsolete.c [iso-8859-1] Thu Apr 4 20:11:17
2013
@@ -316,7 +316,7 @@
Routine Description:
This is a wrapper around the delayed retry DPC routine, RetryRequestDPC.
- This reinitalizes the necessary fields, queues the request, and sets
+ This reinitializes the necessary fields, queues the request, and sets
a timer to call the DPC if someone hasn't already done so.
Arguments:
Modified: trunk/reactos/drivers/storage/classpnp/power.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/storage/classpnp/p…
==============================================================================
--- trunk/reactos/drivers/storage/classpnp/power.c [iso-8859-1] (original)
+++ trunk/reactos/drivers/storage/classpnp/power.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -1494,7 +1494,7 @@
Routine Description:
- This routine reinitalizes the necessary fields, and sends the request
+ This routine reinitializes the necessary fields, and sends the request
to the lower driver.
Arguments:
Modified: trunk/reactos/hal/halppc/generic/display.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halppc/generic/display…
==============================================================================
--- trunk/reactos/hal/halppc/generic/display.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halppc/generic/display.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -221,7 +221,7 @@
VOID FASTCALL
HalInitializeDisplay (PROS_LOADER_PARAMETER_BLOCK LoaderBlock)
/*
- * FUNCTION: Initalize the display
+ * FUNCTION: Initialize the display
* ARGUMENTS:
* InitParameters = Parameters setup by the boot loader
*/
Modified: trunk/reactos/hal/halppc/generic/dma.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halppc/generic/dma.c?r…
==============================================================================
--- trunk/reactos/hal/halppc/generic/dma.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halppc/generic/dma.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -1688,7 +1688,7 @@
* transfer start.
* PhysicalAddress is physical address corresponding to the transfer
* start page and offset.
- * TransferLength is the inital length of the transfer, which is reminder
+ * TransferLength is the initial length of the transfer, which is reminder
* of the first page. The actual value is calculated below.
*
* Note that all the variables can change during the processing which
Modified: trunk/reactos/hal/halppc/up/halinit_up.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halppc/up/halinit_up.c…
==============================================================================
--- trunk/reactos/hal/halppc/up/halinit_up.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halppc/up/halinit_up.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/hal/x86/halinit.c
- * PURPOSE: Initalize the x86 hal
+ * PURPOSE: Initialize the x86 hal
* PROGRAMMER: David Welch (welch(a)cwcom.net)
* UPDATE HISTORY:
* 11/06/98: Created
Modified: trunk/reactos/hal/halx86/apic/apic.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/apic/apic.c?rev…
==============================================================================
--- trunk/reactos/hal/halx86/apic/apic.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/apic/apic.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -365,7 +365,7 @@
LvtEntry.Mask = 1;
LvtEntry.TimerMode = 0;
- /* Initalize and mask LVTs */
+ /* Initialize and mask LVTs */
ApicWrite(APIC_TMRLVTR, LvtEntry.Long);
ApicWrite(APIC_THRMLVTR, LvtEntry.Long);
ApicWrite(APIC_PCLVTR, LvtEntry.Long);
Modified: trunk/reactos/hal/halx86/apic/halinit_apic.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/apic/halinit_ap…
==============================================================================
--- trunk/reactos/hal/halx86/apic/halinit_apic.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/apic/halinit_apic.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/hal/x86/halinit.c
- * PURPOSE: Initalize the x86 hal
+ * PURPOSE: Initialize the x86 hal
* PROGRAMMER: Timo Kreuzer (timo.kreuzer(a)reactos.org)
*/
Modified: trunk/reactos/hal/halx86/generic/dma.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/generic/dma.c?r…
==============================================================================
--- trunk/reactos/hal/halx86/generic/dma.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/generic/dma.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -1850,7 +1850,7 @@
* transfer start.
* PhysicalAddress is physical address corresponding to the transfer
* start page and offset.
- * TransferLength is the inital length of the transfer, which is reminder
+ * TransferLength is the initial length of the transfer, which is reminder
* of the first page. The actual value is calculated below.
*
* Note that all the variables can change during the processing which
Modified: trunk/reactos/hal/halx86/mp/halinit_mp.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/mp/halinit_mp.c…
==============================================================================
--- trunk/reactos/hal/halx86/mp/halinit_mp.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/mp/halinit_mp.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: hal/halx86/mp/halinit_mp.c
- * PURPOSE: Initalize the x86 mp hal
+ * PURPOSE: Initialize the x86 mp hal
* PROGRAMMER: David Welch (welch(a)cwcom.net)
* UPDATE HISTORY:
* 11/06/98: Created
Modified: trunk/reactos/hal/halx86/up/halinit_mini.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/up/halinit_mini…
==============================================================================
--- trunk/reactos/hal/halx86/up/halinit_mini.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/up/halinit_mini.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/hal/x86/halinit.c
- * PURPOSE: Initalize the x86 hal
+ * PURPOSE: Initialize the x86 hal
* PROGRAMMER: David Welch (welch(a)cwcom.net)
* UPDATE HISTORY:
* 11/06/98: Created
Modified: trunk/reactos/hal/halx86/up/halinit_up.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/up/halinit_up.c…
==============================================================================
--- trunk/reactos/hal/halx86/up/halinit_up.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/up/halinit_up.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/hal/x86/halinit.c
- * PURPOSE: Initalize the x86 hal
+ * PURPOSE: Initialize the x86 hal
* PROGRAMMER: David Welch (welch(a)cwcom.net)
* UPDATE HISTORY:
* 11/06/98: Created
Modified: trunk/reactos/hal/halx86/xbox/halinit_xbox.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/xbox/halinit_xb…
==============================================================================
--- trunk/reactos/hal/halx86/xbox/halinit_xbox.c [iso-8859-1] (original)
+++ trunk/reactos/hal/halx86/xbox/halinit_xbox.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -2,7 +2,7 @@
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/hal/x86/halinit.c
- * PURPOSE: Initalize the x86 hal
+ * PURPOSE: Initialize the x86 hal
* PROGRAMMER: David Welch (welch(a)cwcom.net)
* UPDATE HISTORY:
* 11/06/98: Created
Modified: trunk/reactos/lib/cmlib/hiveinit.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/cmlib/hiveinit.c?rev=5…
==============================================================================
--- trunk/reactos/lib/cmlib/hiveinit.c [iso-8859-1] (original)
+++ trunk/reactos/lib/cmlib/hiveinit.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -83,7 +83,7 @@
/**
* @name HvpCreateHive
*
- * Internal helper function to initalize hive descriptor structure for
+ * Internal helper function to initialize hive descriptor structure for
* newly created hive.
*
* @see HvInitialize
@@ -126,7 +126,7 @@
/**
* @name HvpInitializeMemoryHive
*
- * Internal helper function to initalize hive descriptor structure for
+ * Internal helper function to initialize hive descriptor structure for
* a hive stored in memory. The data of the hive are copied and it is
* prepared for read/write access.
*
@@ -246,7 +246,7 @@
/**
* @name HvpInitializeMemoryInplaceHive
*
- * Internal helper function to initalize hive descriptor structure for
+ * Internal helper function to initialize hive descriptor structure for
* a hive stored in memory. The in-memory data of the hive are directly
* used and it is read-only accessible.
*
Modified: trunk/reactos/lib/smlib/smclient.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/smlib/smclient.c?rev=5…
==============================================================================
--- trunk/reactos/lib/smlib/smclient.c [iso-8859-1] (original)
+++ trunk/reactos/lib/smlib/smclient.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -37,7 +37,7 @@
SmApiMsg.h.u1.s1.DataLength = sizeof(SM_EXEC_PGM_MSG) + 8;
SmApiMsg.h.u1.s1.TotalLength = sizeof(SmApiMsg);
- /* Initalize this specific API's parameters */
+ /* Initialize this specific API's parameters */
SmApiMsg.ApiNumber = SmExecPgmApi;
RtlCopyMemory(&SmApiMsg.u.ExecPgm.ProcessInformation,
ProcessInformation,
Modified: trunk/reactos/ntoskrnl/ex/event.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/event.c?rev=58…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/event.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/event.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -142,7 +142,7 @@
/* Check for Success */
if (NT_SUCCESS(Status))
{
- /* Initalize the Event */
+ /* Initialize the Event */
KeInitializeEvent(Event,
EventType,
InitialState);
Modified: trunk/reactos/ntoskrnl/ex/evtpair.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/evtpair.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/evtpair.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/evtpair.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -101,7 +101,7 @@
/* Check for Success */
if (NT_SUCCESS(Status))
{
- /* Initalize the Event */
+ /* Initialize the Event */
DPRINT("Initializing EventPair\n");
KeInitializeEventPair(EventPair);
Modified: trunk/reactos/ntoskrnl/ex/mutant.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/mutant.c?rev=5…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/mutant.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/mutant.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -123,7 +123,7 @@
/* Check for success */
if(NT_SUCCESS(Status))
{
- /* Initalize the Kernel Mutant */
+ /* Initialize the Kernel Mutant */
DPRINT("Initializing the Mutant\n");
KeInitializeMutant(Mutant, InitialOwner);
Modified: trunk/reactos/ntoskrnl/ex/zone.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/zone.c?rev=586…
==============================================================================
--- trunk/reactos/ntoskrnl/ex/zone.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ex/zone.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -90,7 +90,7 @@
}
/*
- * FUNCTION: Initalizes a zone header
+ * FUNCTION: Initializes a zone header
* ARGUMENTS:
* Zone = zone header to be initialized
* BlockSize = Size (in bytes) of the allocation size of the zone
Modified: trunk/reactos/ntoskrnl/io/iomgr/driver.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/driver.c…
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/driver.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/driver.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -436,7 +436,7 @@
/*
* IopInitializeDriverModule
*
- * Initalize a loaded driver.
+ * Initialize a loaded driver.
*
* Parameters
* DeviceNode
Modified: trunk/reactos/ntoskrnl/io/iomgr/util.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/io/iomgr/util.c?r…
==============================================================================
--- trunk/reactos/ntoskrnl/io/iomgr/util.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/io/iomgr/util.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -171,17 +171,17 @@
PAGED_CODE();
- /* Length of the rest. Inital equal to EaLength */
+ /* Length of the rest */
IntEaLength = EaLength;
-
- /* Inital EaBuffer equal to EaBuffer */
EaBufferEnd = EaBuffer;
/* The rest length of the buffer */
while (IntEaLength >= FIELD_OFFSET(FILE_FULL_EA_INFORMATION, EaName[0]))
{
- /* rest of buffer must greater then the
- sizeof(FILE_FULL_EA_INFORMATION) + buffer */
+ /*
+ * The rest of buffer must greater than
+ * sizeof(FILE_FULL_EA_INFORMATION) + buffer
+ */
NextEaBufferOffset =
EaBufferEnd->EaNameLength + EaBufferEnd->EaValueLength +
FIELD_OFFSET(FILE_FULL_EA_INFORMATION, EaName[0]) + 1;
@@ -203,18 +203,21 @@
}
else
{
- /* From the MSDN
-
http://msdn2.microsoft.com/en-us/library/ms795740.aspx
- For all entries except the last, the value of
- NextEntryOffset must be greater than zero and
- must fall on a ULONG boundary
+ /*
+ * From MSDN:
+ *
http://msdn2.microsoft.com/en-us/library/ms795740.aspx
+ * For all entries except the last one, the value of
+ * NextEntryOffset must be greater than zero and
+ * must fall on a ULONG boundary.
*/
NextEaBufferOffset = ((NextEaBufferOffset + 3) & ~3);
if ((EaBufferEnd->NextEntryOffset == NextEaBufferOffset)
&&
((LONG)EaBufferEnd->NextEntryOffset > 0))
{
- /* Rest of buffer must be greater then the
- next offset */
+ /*
+ * The rest of buffer must be greater
+ * than the following offset.
+ */
IntEaLength =
IntEaLength - EaBufferEnd->NextEntryOffset;
Modified: trunk/reactos/ntoskrnl/ke/amd64/krnlinit.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/amd64/krnlinit…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/amd64/krnlinit.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/amd64/krnlinit.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -30,7 +30,7 @@
VOID
NTAPI
-KiInitalizeHandBuiltThread(
+KiInitializeHandBuiltThread(
IN PKTHREAD Thread,
IN PKPROCESS Process,
IN PVOID Stack)
@@ -92,7 +92,7 @@
else
{
/* Initialize the startup thread */
- KiInitalizeHandBuiltThread(Thread, Process, KernelStack);
+ KiInitializeHandBuiltThread(Thread, Process, KernelStack);
/* Initialize cpu with HAL */
if (!HalInitSystem(0, LoaderBlock))
@@ -212,7 +212,7 @@
InitProcess->QuantumReset = MAXCHAR;
/* Initialize the startup thread */
- KiInitalizeHandBuiltThread(InitThread, InitProcess, IdleStack);
+ KiInitializeHandBuiltThread(InitThread, InitProcess, IdleStack);
/* Initialize the Kernel Executive */
ExpInitializeExecutive(0, LoaderBlock);
Modified: trunk/reactos/ntoskrnl/ke/i386/usercall_asm.S
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/i386/usercall_…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/i386/usercall_asm.S [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/i386/usercall_asm.S [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -59,7 +59,7 @@
/* load the address of the callout frame into ecx */
lea ecx, [esp - 12]
- /* Allocate space for the inital stack */
+ /* Allocate space for the initial stack */
sub esp, 12 + NPX_FRAME_LENGTH + KTRAP_FRAME_LENGTH + 16
call @KiUserModeCallout@4
Modified: trunk/reactos/ntoskrnl/ke/thrdobj.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/thrdobj.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/thrdobj.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/thrdobj.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -772,7 +772,7 @@
PKTIMER Timer;
NTSTATUS Status;
- /* Initalize the Dispatcher Header */
+ /* Initialize the Dispatcher Header */
Thread->Header.Type = ThreadObject;
Thread->Header.ThreadControlFlags = 0;
Thread->Header.DebugActive = FALSE;
@@ -862,7 +862,7 @@
Status = STATUS_SUCCESS;
_SEH2_TRY
{
- /* Initalize the Thread Context */
+ /* Initialize the Thread Context */
KiInitializeContextThread(Thread,
SystemRoutine,
StartRoutine,
@@ -884,7 +884,7 @@
}
_SEH2_END;
- /* Set the Thread to initalized */
+ /* Set the Thread to initialized */
Thread->State = Initialized;
return Status;
}
Modified: trunk/reactos/ntoskrnl/ke/timerobj.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/timerobj.c?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/timerobj.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/timerobj.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -256,7 +256,7 @@
Timer->Header.SignalState = 0;
InitializeListHead(&(Timer->Header.WaitListHead));
- /* Initalize the Other data */
+ /* Initialize the Other data */
Timer->DueTime.QuadPart = 0;
Timer->Period = 0;
}
Modified: trunk/reactos/ntoskrnl/se/semgr.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/se/semgr.c?rev=58…
==============================================================================
--- trunk/reactos/ntoskrnl/se/semgr.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/se/semgr.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -181,8 +181,7 @@
NTSTATUS Status;
/* Create '\Security' directory */
- RtlInitUnicodeString(&Name,
- L"\\Security");
+ RtlInitUnicodeString(&Name, L"\\Security");
InitializeObjectAttributes(&ObjectAttributes,
&Name,
OBJ_PERMANENT,
@@ -197,9 +196,8 @@
return FALSE;
}
- /* Create 'LSA_AUTHENTICATION_INITALIZED' event */
- RtlInitUnicodeString(&Name,
- L"\\LSA_AUTHENTICATION_INITALIZED");
+ /* Create 'LSA_AUTHENTICATION_INITIALIZED' event */
+ RtlInitUnicodeString(&Name, L"\\LSA_AUTHENTICATION_INITIALIZED");
InitializeObjectAttributes(&ObjectAttributes,
&Name,
OBJ_PERMANENT,
@@ -212,7 +210,7 @@
FALSE);
if (!NT_SUCCESS(Status))
{
- DPRINT1("Failed to create 'LSA_AUTHENTICATION_INITALIZED'
event!\n");
+ DPRINT1("Failed to create 'LSA_AUTHENTICATION_INITIALIZED'
event!\n");
NtClose(DirectoryHandle);
return FALSE;
}
Modified: trunk/reactos/win32ss/drivers/font/ftfd/font.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/drivers/font/ftfd/…
==============================================================================
--- trunk/reactos/win32ss/drivers/font/ftfd/font.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/drivers/font/ftfd/font.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -382,7 +382,7 @@
return NULL;
}
- /* Get inital value for cGlyphs from ftface */
+ /* Get initial value for cGlyphs from ftface */
cGlyphs = ftface->num_glyphs + 1;
/* Allocate a buffer for the char codes and glyph indexes */
Modified: trunk/reactos/win32ss/user/ntuser/winsta.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/win32ss/user/ntuser/winsta…
==============================================================================
--- trunk/reactos/win32ss/user/ntuser/winsta.c [iso-8859-1] (original)
+++ trunk/reactos/win32ss/user/ntuser/winsta.c [iso-8859-1] Thu Apr 4 20:11:17 2013
@@ -23,7 +23,7 @@
/* Full path to WindowStations directory */
UNICODE_STRING gustrWindowStationsDir;
-/* INITALIZATION FUNCTIONS ****************************************************/
+/* INITIALIZATION FUNCTIONS ****************************************************/
INIT_FUNCTION
NTSTATUS