File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
src/unix/linux_like/android Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -2387,6 +2387,22 @@ extern "C" {
2387
2387
sevlen : :: size_t ,
2388
2388
flags : :: c_int ,
2389
2389
) -> :: c_int ;
2390
+ pub fn process_vm_readv (
2391
+ pid : :: pid_t ,
2392
+ local_iov : * const :: iovec ,
2393
+ liovcnt : :: c_ulong ,
2394
+ remote_iov : * const :: iovec ,
2395
+ riovcnt : :: c_ulong ,
2396
+ flags : :: c_ulong ,
2397
+ ) -> isize ;
2398
+ pub fn process_vm_writev (
2399
+ pid : :: pid_t ,
2400
+ local_iov : * const :: iovec ,
2401
+ liovcnt : :: c_ulong ,
2402
+ remote_iov : * const :: iovec ,
2403
+ riovcnt : :: c_ulong ,
2404
+ flags : :: c_ulong ,
2405
+ ) -> isize ;
2390
2406
pub fn ptrace ( request : :: c_int , ...) -> :: c_long ;
2391
2407
pub fn getpriority ( which : :: c_int , who : :: id_t ) -> :: c_int ;
2392
2408
pub fn setpriority ( which : :: c_int , who : :: id_t , prio : :: c_int ) -> :: c_int ;
You can’t perform that action at this time.
0 commit comments