mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-18 10:46:25 +00:00
Increase the JDB kernel object names buffer size
This patch increases the size of the JDB kernel object names buffer. The original size was too small for some Genode scenarios and caused missing thread names in the kernel debugger thread list. Fixes #191.
This commit is contained in:
parent
beed82bb56
commit
f23d3cb66b
@ -12,3 +12,9 @@ required for using this kernel with Genode.
|
||||
On the occurrence of undefined-instruction exceptions on ARM, Fiasco.OC
|
||||
reports a wrong program-counter value to the exception handler. The patch
|
||||
fixes the problem.
|
||||
|
||||
:'jdb_kobject_names.patch':
|
||||
|
||||
This patch increases the size of the JDB kernel object names buffer. The
|
||||
original size was too small for some Genode scenarios and caused missing
|
||||
thread names in the kernel debugger thread list.
|
13
base-foc/patches/jdb_kobject_names.patch
Normal file
13
base-foc/patches/jdb_kobject_names.patch
Normal file
@ -0,0 +1,13 @@
|
||||
Index: kernel/fiasco/src/jdb/jdb_kobject_names.cpp
|
||||
===================================================================
|
||||
--- kernel/fiasco/src/jdb/jdb_kobject_names.cpp (revision 38)
|
||||
+++ kernel/fiasco/src/jdb/jdb_kobject_names.cpp (working copy)
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
enum
|
||||
{
|
||||
- Name_buffer_size = 8192,
|
||||
+ Name_buffer_size = 4*8192,
|
||||
Name_entries = Name_buffer_size / sizeof(Jdb_kobject_name),
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user