コード例 #1
0
ファイル: util.c プロジェクト: DenisLug/mptcp
/*
 * Read exactly 'n' bytes or return an error.
 */
ssize_t readn(int fd, void *buf, size_t n)
{
	return ion(true, fd, buf, n);
}
コード例 #2
0
ファイル: util.c プロジェクト: 19Dan01/linux
/*
 * Write exactly 'n' bytes or return an error.
 */
ssize_t writen(int fd, void *buf, size_t n)
{
	return ion(false, fd, buf, n);
}