elf_helper: support for objects in user memory
Some forthcoming kernel object types like futexes need to be tracked, but do not contain data that is private to the kernel. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
ce6210e479
commit
c235e167fa
3 changed files with 40 additions and 30 deletions
|
@ -26,9 +26,9 @@ import argparse
|
|||
import struct
|
||||
from elf_helper import ElfHelper
|
||||
|
||||
kobjects = [
|
||||
"_k_thread_stack_element",
|
||||
]
|
||||
kobjects = {
|
||||
"_k_thread_stack_element": (None, False)
|
||||
}
|
||||
|
||||
|
||||
header = """%compare-lengths
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue