Skip to content
Snippets Groups Projects
Commit 8624caf9 authored by rupansh-arch's avatar rupansh-arch
Browse files

expose process_vm_readv, process_vm_writev for android

parent 0d374002
No related branches found
No related tags found
No related merge requests found
......@@ -2387,6 +2387,22 @@ extern "C" {
sevlen: ::size_t,
flags: ::c_int,
) -> ::c_int;
pub fn process_vm_readv(
pid: ::pid_t,
local_iov: *const ::iovec,
liovcnt: ::c_ulong,
remote_iov: *const ::iovec,
riovcnt: ::c_ulong,
flags: ::c_ulong,
) -> isize;
pub fn process_vm_writev(
pid: ::pid_t,
local_iov: *const ::iovec,
liovcnt: ::c_ulong,
remote_iov: *const ::iovec,
riovcnt: ::c_ulong,
flags: ::c_ulong,
) -> isize;
pub fn ptrace(request: ::c_int, ...) -> ::c_long;
pub fn getpriority(which: ::c_int, who: ::id_t) -> ::c_int;
pub fn setpriority(which: ::c_int, who: ::id_t, prio: ::c_int) -> ::c_int;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment