We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6598e2c + c9496fe commit 81e3af2Copy full SHA for 81e3af2
src/unix/notbsd/linux/mod.rs
@@ -613,6 +613,18 @@ extern {
613
new_limit: *const ::rlimit64,
614
old_limit: *mut ::rlimit64) -> ::c_int;
615
pub fn getloadavg(loadavg: *mut ::c_double, nelem: ::c_int) -> ::c_int;
616
+ pub fn process_vm_readv(pid: ::pid_t,
617
+ local_iov: *const ::iovec,
618
+ liovcnt: ::c_ulong,
619
+ remote_iov: *const ::iovec,
620
+ riovcnt: ::c_ulong,
621
+ flags: ::c_ulong) -> isize;
622
+ pub fn process_vm_writev(pid: ::pid_t,
623
624
625
626
627
628
}
629
630
cfg_if! {
0 commit comments