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.
1 parent 19fd504 commit 60df216Copy full SHA for 60df216
src/unix/notbsd/mod.rs
@@ -800,6 +800,18 @@ extern {
800
pub fn setrlimit64(resource: ::c_int, rlim: *const rlimit64) -> ::c_int;
801
pub fn stat64(path: *const c_char, buf: *mut stat64) -> ::c_int;
802
pub fn eventfd(init: ::c_uint, flags: ::c_int) -> ::c_int;
803
+ pub fn process_vm_readv(pid: ::pid_t,
804
+ local_iov: *const ::iovec,
805
+ liovcnt: ::c_ulong,
806
+ remote_iov: *const ::iovec,
807
+ riovcnt: ::c_ulong,
808
+ flags: ::c_ulong) -> isize;
809
+ pub fn process_vm_writev(pid: ::pid_t,
810
811
812
813
814
815
}
816
817
cfg_if! {
0 commit comments