| Index: fusl/src/linux/process_vm.c
|
| diff --git a/fusl/src/linux/process_vm.c b/fusl/src/linux/process_vm.c
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7703bdf0c911b7574d7610cb5526565e54d4a13f
|
| --- /dev/null
|
| +++ b/fusl/src/linux/process_vm.c
|
| @@ -0,0 +1,13 @@
|
| +#define _GNU_SOURCE
|
| +#include <sys/uio.h>
|
| +#include "syscall.h"
|
| +
|
| +ssize_t process_vm_writev(pid_t pid, const struct iovec *lvec, unsigned long liovcnt, const struct iovec *rvec, unsigned long riovcnt, unsigned long flags)
|
| +{
|
| + return syscall(SYS_process_vm_writev, pid, lvec, liovcnt, rvec, riovcnt, flags);
|
| +}
|
| +
|
| +ssize_t process_vm_readv(pid_t pid, const struct iovec *lvec, unsigned long liovcnt, const struct iovec *rvec, unsigned long riovcnt, unsigned long flags)
|
| +{
|
| + return syscall(SYS_process_vm_readv, pid, lvec, liovcnt, rvec, riovcnt, flags);
|
| +}
|
|
|