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

Function sys_close_range

freebsd/kern/kern_descrip.c:1427–1435  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1425};
1426#endif
1427int
1428sys_close_range(struct thread *td, struct close_range_args *uap)
1429{
1430
1431 /* No flags currently defined */
1432 if (uap->flags != 0)
1433 return (EINVAL);
1434 return (kern_close_range(td, uap->lowfd, uap->highfd));
1435}
1436
1437#ifdef COMPAT_FREEBSD12
1438/*

Callers

nothing calls this directly

Calls 1

kern_close_rangeFunction · 0.85

Tested by

no test coverage detected