Author: hbelusca Date: Thu Feb 4 20:27:44 2016 New Revision: 70689
URL: http://svn.reactos.org/svn/reactos?rev=70689&view=rev Log: [CODE]: s/interupt/interrupt/
Modified: trunk/reactos/boot/freeldr/freeldr/arch/realmode/int386.inc trunk/reactos/drivers/usb/usbohci/hardware.h trunk/reactos/hal/halx86/apic/tsc.c trunk/reactos/ntoskrnl/ex/interlocked.c trunk/reactos/ntoskrnl/ke/amd64/stubs.c trunk/reactos/ntoskrnl/ke/arm/thrdini.c trunk/reactos/ntoskrnl/ke/i386/thrdini.c trunk/reactos/ntoskrnl/ke/i386/traphdlr.c
Modified: trunk/reactos/boot/freeldr/freeldr/arch/realmode/int386.inc URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/r... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/arch/realmode/int386.inc [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/arch/realmode/int386.inc [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -13,7 +13,7 @@ push gs pushad
- /* Get the interupt vector and patch the opcode */ + /* Get the interrupt vector and patch the opcode */ mov al, byte ptr ds:[BSS_IntVector] mov byte ptr ds:[Int386_vector_opcode], al
Modified: trunk/reactos/drivers/usb/usbohci/hardware.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/drivers/usb/usbohci/hardwar... ============================================================================== --- trunk/reactos/drivers/usb/usbohci/hardware.h [iso-8859-1] (original) +++ trunk/reactos/drivers/usb/usbohci/hardware.h [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -151,7 +151,7 @@ | OHCI_BULK_LIST_ENABLE)
// -// All interupts +// All interrupts // #define OHCI_ALL_INTERRUPTS (OHCI_SCHEDULING_OVERRUN \ | OHCI_WRITEBACK_DONE_HEAD \ @@ -163,7 +163,7 @@ | OHCI_OWNERSHIP_CHANGE)
// -// All normal interupts +// All normal interrupts // #define OHCI_NORMAL_INTERRUPTS (OHCI_SCHEDULING_OVERRUN \ | OHCI_WRITEBACK_DONE_HEAD \
Modified: trunk/reactos/hal/halx86/apic/tsc.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/hal/halx86/apic/tsc.c?rev=7... ============================================================================== --- trunk/reactos/hal/halx86/apic/tsc.c [iso-8859-1] (original) +++ trunk/reactos/hal/halx86/apic/tsc.c [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -89,7 +89,7 @@ /* Reset TSC value to 0 */ __writemsr(MSR_RDTSC, 0);
- /* Enable the timer interupt */ + /* Enable the timer interrupt */ HalEnableSystemInterrupt(HalpRtcClockVector, CLOCK_LEVEL, Latched);
/* Read register C, so that the next interrupt can happen */ @@ -103,7 +103,7 @@ /* Disable the periodic interrupt in the CMOS */ HalpWriteCmos(RTC_REGISTER_B, RegisterB & ~RTC_REG_B_PI);
- /* Disable the timer interupt */ + /* Disable the timer interrupt */ HalDisableSystemInterrupt(HalpRtcClockVector, CLOCK_LEVEL);
/* Restore old IDT entry */
Modified: trunk/reactos/ntoskrnl/ex/interlocked.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ex/interlocked.c?r... ============================================================================== --- trunk/reactos/ntoskrnl/ex/interlocked.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ex/interlocked.c [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -29,7 +29,7 @@
FORCEINLINE BOOLEAN -_ExiDisableInteruptsAndAcquireSpinlock( +_ExiDisableInterruptsAndAcquireSpinlock( IN OUT PKSPIN_LOCK Lock) { BOOLEAN Enabled; @@ -45,7 +45,7 @@
FORCEINLINE VOID -_ExiReleaseSpinLockAndRestoreInterupts( +_ExiReleaseSpinLockAndRestoreInterrupts( IN OUT PKSPIN_LOCK Lock, BOOLEAN Enable) { @@ -68,7 +68,7 @@ BOOLEAN Enable;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the old value */ OldValue.QuadPart = Addend->QuadPart; @@ -77,7 +77,7 @@ Addend->QuadPart += Increment.QuadPart;
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the old value */ return OldValue; @@ -94,7 +94,7 @@ ULONG OldValue;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the old value */ OldValue = *Addend; @@ -103,7 +103,7 @@ *Addend += Increment;
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the old value */ return OldValue; @@ -120,7 +120,7 @@ PLIST_ENTRY FirstEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the first entry */ FirstEntry = ListHead->Flink; @@ -129,7 +129,7 @@ InsertHeadList(ListHead, ListEntry);
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the old first entry or NULL for empty list */ return (FirstEntry == ListHead) ? NULL : FirstEntry; @@ -146,7 +146,7 @@ PLIST_ENTRY LastEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the last entry */ LastEntry = ListHead->Blink; @@ -155,7 +155,7 @@ InsertTailList(ListHead, ListEntry);
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the old last entry or NULL for empty list */ return (LastEntry == ListHead) ? NULL : LastEntry; @@ -171,7 +171,7 @@ PLIST_ENTRY ListEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Check if the list is empty */ if (IsListEmpty(ListHead)) @@ -190,7 +190,7 @@ }
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the entry */ return ListEntry; @@ -206,7 +206,7 @@ PSINGLE_LIST_ENTRY ListEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Pop the first entry from the list */ ListEntry = PopEntryList(ListHead); @@ -216,7 +216,7 @@ #endif
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the entry */ return ListEntry; @@ -233,7 +233,7 @@ PSINGLE_LIST_ENTRY OldListEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the old top entry */ OldListEntry = ListHead->Next; @@ -242,7 +242,7 @@ PushEntryList(ListHead, ListEntry);
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the entry */ return OldListEntry; @@ -299,7 +299,7 @@ ULONG OldValue;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the old value */ OldValue = *Addend; @@ -308,7 +308,7 @@ *Addend += Increment;
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the old value */ return OldValue; @@ -325,7 +325,7 @@ PLIST_ENTRY FirstEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the first entry */ FirstEntry = ListHead->Flink; @@ -334,7 +334,7 @@ InsertHeadList(ListHead, ListEntry);
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the old first entry or NULL for empty list */ return (FirstEntry == ListHead) ? NULL : FirstEntry; @@ -351,7 +351,7 @@ PLIST_ENTRY LastEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the last entry */ LastEntry = ListHead->Blink; @@ -360,7 +360,7 @@ InsertTailList(ListHead, ListEntry);
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* Return the old last entry or NULL for empty list */ return (LastEntry == ListHead) ? NULL : LastEntry; @@ -377,7 +377,7 @@ PLIST_ENTRY ListEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Check if the list is empty */ if (IsListEmpty(ListHead)) @@ -396,7 +396,7 @@ }
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* return the entry */ return ListEntry; @@ -412,7 +412,7 @@ PSINGLE_LIST_ENTRY ListEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Pop the first entry from the list */ ListEntry = PopEntryList(ListHead); @@ -422,7 +422,7 @@ #endif
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* return the entry */ return ListEntry; @@ -439,7 +439,7 @@ PSINGLE_LIST_ENTRY OldListEntry;
/* Disable interrupts and acquire the spinlock */ - Enable = _ExiDisableInteruptsAndAcquireSpinlock(Lock); + Enable = _ExiDisableInterruptsAndAcquireSpinlock(Lock);
/* Save the old top entry */ OldListEntry = ListHead->Next; @@ -448,7 +448,7 @@ PushEntryList(ListHead, ListEntry);
/* Release the spinlock and restore interrupts */ - _ExiReleaseSpinLockAndRestoreInterupts(Lock, Enable); + _ExiReleaseSpinLockAndRestoreInterrupts(Lock, Enable);
/* return the entry */ return OldListEntry;
Modified: trunk/reactos/ntoskrnl/ke/amd64/stubs.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/amd64/stubs.c?r... ============================================================================== --- trunk/reactos/ntoskrnl/ke/amd64/stubs.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ke/amd64/stubs.c [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -139,7 +139,7 @@ /* Check if a new thread is scheduled for execution */ if (Prcb->NextThread) { - /* Enable interupts */ + /* Enable interrupts */ _enable();
/* Capture current thread data */
Modified: trunk/reactos/ntoskrnl/ke/arm/thrdini.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/arm/thrdini.c?r... ============================================================================== --- trunk/reactos/ntoskrnl/ke/arm/thrdini.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ke/arm/thrdini.c [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -179,7 +179,7 @@ /* Check if a new thread is scheduled for execution */ if (Prcb->NextThread) { - /* Enable interupts */ + /* Enable interrupts */ _enable();
/* Capture current thread data */
Modified: trunk/reactos/ntoskrnl/ke/i386/thrdini.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/i386/thrdini.c?... ============================================================================== --- trunk/reactos/ntoskrnl/ke/i386/thrdini.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ke/i386/thrdini.c [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -294,7 +294,7 @@ /* Check if a new thread is scheduled for execution */ if (Prcb->NextThread) { - /* Enable interupts */ + /* Enable interrupts */ _enable();
/* Capture current thread data */
Modified: trunk/reactos/ntoskrnl/ke/i386/traphdlr.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/i386/traphdlr.c... ============================================================================== --- trunk/reactos/ntoskrnl/ke/i386/traphdlr.c [iso-8859-1] (original) +++ trunk/reactos/ntoskrnl/ke/i386/traphdlr.c [iso-8859-1] Thu Feb 4 20:27:44 2016 @@ -1219,7 +1219,7 @@ /* Save CR2 */ Cr2 = __readcr2();
- /* Enable interupts */ + /* Enable interrupts */ _enable();
/* Check if we came in with interrupts disabled */