MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sys_openat

Function sys_openat

freebsd/kern/vfs_syscalls.c:1085–1092  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1083};
1084#endif
1085int
1086sys_openat(struct thread *td, struct openat_args *uap)
1087{
1088
1089 AUDIT_ARG_FD(uap->fd);
1090 return (kern_openat(td, uap->fd, uap->path, UIO_USERSPACE, uap->flag,
1091 uap->mode));
1092}
1093
1094int
1095kern_openat(struct thread *td, int fd, const char *path, enum uio_seg pathseg,

Callers

nothing calls this directly

Calls 1

kern_openatFunction · 0.70

Tested by

no test coverage detected