| 1425 | }; |
| 1426 | #endif |
| 1427 | int |
| 1428 | sys_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 | /* |
nothing calls this directly
no test coverage detected