summaryrefslogtreecommitdiff
path: root/Kernel/KSyms.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-05-16 13:41:16 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-05-16 13:41:16 +0200
commit2f4e7edee5890811d0678366d37d41324e28947f (patch)
tree731fcf31b1b1d2915d380c612d06b4df5f6a61d0 /Kernel/KSyms.h
parent7a2da54c07926e29cbd15d61856b168d57cc8704 (diff)
downloadserenity-2f4e7edee5890811d0678366d37d41324e28947f.zip
Kernel: Simplify dump_backtrace() API for clients.
It makes no sense that clients had to worry about whether or not KSyms were loaded.
Diffstat (limited to 'Kernel/KSyms.h')
-rw-r--r--Kernel/KSyms.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/KSyms.h b/Kernel/KSyms.h
index 567f9e273e..3d35dcc75d 100644
--- a/Kernel/KSyms.h
+++ b/Kernel/KSyms.h
@@ -16,4 +16,4 @@ extern bool ksyms_ready;
extern dword ksym_lowest_address;
extern dword ksym_highest_address;
-void dump_backtrace(bool use_ksyms);
+void dump_backtrace();