summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorasynts <asynts@gmail.com>2021-01-14 00:10:32 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-22 22:14:30 +0100
commit67583bc4242a8063574702a5351fc321025b0218 (patch)
tree0b815a7f7c448be89f27b37fe419e79756f6e168 /AK
parent78b2be5a2a9e7dffa60f4600116412be824fb397 (diff)
downloadserenity-67583bc4242a8063574702a5351fc321025b0218.zip
Everywhere: Replace a bundle of dbg with dbgln.
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
Diffstat (limited to 'AK')
-rw-r--r--AK/Debug.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/AK/Debug.h b/AK/Debug.h
index 06deb53dd9..da15f12b88 100644
--- a/AK/Debug.h
+++ b/AK/Debug.h
@@ -129,3 +129,33 @@ constexpr bool debug_vmware_backdoor = true;
#else
constexpr bool debug_vmware_backdoor = false;
#endif
+
+#ifdef FILEDESCRIPTION_DEBUG
+constexpr bool debug_file_description = true;
+#else
+constexpr bool debug_file_description = false;
+#endif
+
+#ifdef PROCFS_DEBUG
+constexpr bool debug_procfs = true;
+#else
+constexpr bool debug_procfs = false;
+#endif
+
+#ifdef VFS_DEBUG
+constexpr bool debug_vfs = true;
+#else
+constexpr bool debug_vfs = false;
+#endif
+
+#ifdef IOAPIC_DEBUG
+constexpr bool debug_ioapic = true;
+#else
+constexpr bool debug_ioapic = false;
+#endif
+
+#ifdef IRQ_DEBUG
+constexpr bool debug_irq = true;
+#else
+constexpr bool debug_irq = false;
+#endif