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

Function sys_fpathconf

freebsd/kern/kern_descrip.c:1596–1606  ·  view source on GitHub ↗

ARGSUSED */

Source from the content-addressed store, hash-verified

1594#endif
1595/* ARGSUSED */
1596int
1597sys_fpathconf(struct thread *td, struct fpathconf_args *uap)
1598{
1599 long value;
1600 int error;
1601
1602 error = kern_fpathconf(td, uap->fd, uap->name, &value);
1603 if (error == 0)
1604 td->td_retval[0] = value;
1605 return (error);
1606}
1607
1608int
1609kern_fpathconf(struct thread *td, int fd, int name, long *valuep)

Callers

nothing calls this directly

Calls 1

kern_fpathconfFunction · 0.85

Tested by

no test coverage detected