summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-02 19:00:38 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-02 19:00:38 +0100
commitea8d3861467347b538162754745ce6132d08e161 (patch)
tree6ece0f75445fa6d6c5447d6ca67026d07e697f90
parentc5bd9d4ed1d80ac91d46146565127b0c185f1b43 (diff)
downloadserenity-ea8d3861467347b538162754745ce6132d08e161.zip
Kernel: Update Thread::raw_backtrace() signature to use uintptr_t
-rw-r--r--Kernel/Thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Thread.h b/Kernel/Thread.h
index 1082a8606a..f56bdf8f28 100644
--- a/Kernel/Thread.h
+++ b/Kernel/Thread.h
@@ -101,7 +101,7 @@ public:
const Process& process() const { return m_process; }
String backtrace(ProcessInspectionHandle&) const;
- Vector<u32> raw_backtrace(u32 ebp) const;
+ Vector<uintptr_t> raw_backtrace(uintptr_t ebp) const;
const String& name() const { return m_name; }
void set_name(StringView s) { m_name = s; }