You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of #3373 - SteveLauC:close_range, r=JohnTitor
feat: add close_range for glibc
This PR adds [`close_range(2)`](https://man7.org/linux/man-pages/man2/close_range.2.html) for Linux/glibc:
```c
#include <linux/close_range.h>
int close_range(unsigned int first, unsigned int last,
unsigned int flags);
```
musl and uClibc don't have wrappers for this syscall
0 commit comments