ladybird/Kernel/Interrupts
asynts acdcf59a33 Everywhere: Remove unnecessary debug comments.
It would be tempting to uncomment these statements, but that won't work
with the new changes.

This was done with the following commands:

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/#define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/#define/ { toggle = 1 }' {} \;

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec awk -i inplace '$0 !~ /\/\/ #define/ { if (!toggle) { print; } else { toggle = !toggle } } ; $0 ~/\/\/ #define/ { toggle = 1 }' {} \;
2021-01-25 09:47:36 +01:00
..
APIC.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
APIC.h Kernel: Set up and calibrate APIC timer, and enable timer on all CPUs 2020-10-25 21:18:35 +01:00
GenericInterruptHandler.cpp Kernel: Fix counting interrupts 2020-12-02 23:19:59 +01:00
GenericInterruptHandler.h Kernel: Specify default memory order for some non-synchronizing Atomics 2021-01-04 19:13:52 +01:00
InterruptManagement.cpp Everywhere: Replace a bundle of dbg with dbgln. 2021-01-11 11:55:47 +01:00
InterruptManagement.h Refactor: Replace usages of FixedArray with Vector. 2020-09-08 14:01:21 +02:00
IOAPIC.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
IOAPIC.h Everywhere: Re-format with clang-format-11 2020-12-31 21:51:00 +01:00
IRQController.h Meta+Kernel: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
IRQHandler.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
IRQHandler.h Kernel: Add and remove explicit keyword where needed 2020-08-28 09:16:18 +02:00
MSIHandler.h Meta+Kernel: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
PIC.cpp Everywhere: Re-format with clang-format-11 2020-12-31 21:51:00 +01:00
PIC.h
SharedIRQHandler.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
SharedIRQHandler.h
SpuriousInterruptHandler.cpp Kernel: Allow to install a real IRQ handler on a spurious one 2020-12-21 00:19:21 +01:00
SpuriousInterruptHandler.h Kernel: Allow to install a real IRQ handler on a spurious one 2020-12-21 00:19:21 +01:00
UnhandledInterruptHandler.cpp Everywhere: Replace a bundle of dbg with dbgln. 2021-01-11 11:55:47 +01:00
UnhandledInterruptHandler.h