mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 02:47:34 +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
|
@ -13,6 +13,6 @@ __BEGIN_DECLS
|
|||
// FIXME: PID/TID ISSUE
|
||||
// Affects the entirety of LibDebug and Userland/strace.cpp.
|
||||
// See also Kernel/Ptrace.cpp
|
||||
int ptrace(int request, pid_t tid, void* addr, int data);
|
||||
long ptrace(int request, pid_t tid, void* addr, void* data);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue