mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:07:35 +00:00
Kernel+LibC: Fix ptrace for 64-bit
This makes the types used in the PT_PEEK and PT_POKE actions suitable for 64-bit platforms as well.
This commit is contained in:
parent
8292061f53
commit
38ddf301f6
6 changed files with 26 additions and 26 deletions
|
@ -1011,8 +1011,8 @@ public:
|
|||
u32 signal_mask() const;
|
||||
void clear_signals();
|
||||
|
||||
ErrorOr<u32> peek_debug_register(u32 register_index);
|
||||
ErrorOr<void> poke_debug_register(u32 register_index, u32 data);
|
||||
ErrorOr<FlatPtr> peek_debug_register(u32 register_index);
|
||||
ErrorOr<void> poke_debug_register(u32 register_index, FlatPtr data);
|
||||
|
||||
void set_dump_backtrace_on_finalization() { m_dump_backtrace_on_finalization = true; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue