process_vm.c\linux\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/linux/process_vm.c
blob: 7703bdf0c911b7574d7610cb5526565e54d4a13f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月11日 03:16:59 +0000

AltStyle によって変換されたページ (->オリジナル) /