serenity/Kernel/Time
asynts 8465683dcf Everywhere: Debug macros instead of constexpr.
This was done with the following script:

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/dbgln<debug_([a-z_]+)>/dbgln<\U\1_DEBUG>/' {} \;

    find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/if constexpr \(debug_([a-z0-9_]+)/if constexpr \(\U\1_DEBUG/' {} \;
2021-01-25 09:47:36 +01:00
..
APICTimer.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00
APICTimer.h Kernel: Improve time keeping and dramatically reduce interrupt load 2020-12-21 18:26:12 +01:00
HardwareTimer.h Kernel: Take into account the time keeper's frequency (if no HPET) 2020-12-27 01:17:50 +01:00
HPET.cpp Everywhere: Debug macros instead of constexpr. 2021-01-25 09:47:36 +01:00
HPET.h Kernel: Improve time keeping and dramatically reduce interrupt load 2020-12-21 18:26:12 +01:00
HPETComparator.cpp Everywhere: Debug macros instead of constexpr. 2021-01-25 09:47:36 +01:00
HPETComparator.h Kernel: Improve time keeping and dramatically reduce interrupt load 2020-12-21 18:26:12 +01:00
PIT.cpp Kernel: Convert a bunch of String::format() => String::formatted() 2021-01-11 22:07:01 +01:00
PIT.h Kernel: Improve time keeping and dramatically reduce interrupt load 2020-12-21 18:26:12 +01:00
RTC.cpp Everywhere: Replace a bundle of dbg with dbgln. 2021-01-11 11:55:47 +01:00
RTC.h Kernel: Improve time keeping and dramatically reduce interrupt load 2020-12-21 18:26:12 +01:00
TimeManagement.cpp Everywhere: Remove unnecessary debug comments. 2021-01-25 09:47:36 +01:00
TimeManagement.h Kernel: Improve time keeping and dramatically reduce interrupt load 2020-12-21 18:26:12 +01:00