更新日期: 2022/06/01 来源: https://gitee.com/weharmony/kernel_liteos_a_note
vfs_preadv.c 文件参考

浏览源代码.

函数

ssize_t preadv (int fd, const struct iovec *iov, int iovcnt, off_t offset)
 

函数说明

◆ preadv()

ssize_t preadv ( int  fd,
const struct iovec *  iov,
int  iovcnt,
off_t  offset 
)

在文件 vfs_preadv.c47 行定义.

48{
49 return vfs_readv(fd, iov, iovcnt, &offset);
50}
ssize_t vfs_readv(int fd, const struct iovec *iov, int iovcnt, off_t *offset)
供系统调用
Definition: vfs_readv.c:91
函数调用图:
这是这个函数的调用关系图: