Re: [PATCH] hurd: Implement close_range and closefrom

2021-11-07 Thread Adhemerval Zanella
On 07/11/2021 12:17, Samuel Thibault via Libc-alpha wrote: > Hello, > > Applied, thanks! > > (I have just fixed the symbol version: glibc 2.34 is already out, we are > preparing glibc 2.35). We are trying to avoid it by asking the sender to send a fully working change (so git-pw can be applie

Re: [PATCH] hurd: Implement close_range and closefrom

2021-11-07 Thread Samuel Thibault
Hello, Applied, thanks! (I have just fixed the symbol version: glibc 2.34 is already out, we are preparing glibc 2.35). Samuel Sergey Bugaev, le sam. 06 nov. 2021 18:35:24 +0300, a ecrit: > The close_range () function implements the same API as the Linux and > FreeBSD syscalls. It operates atom

[PATCH] hurd: Implement close_range and closefrom

2021-11-06 Thread Sergey Bugaev
The close_range () function implements the same API as the Linux and FreeBSD syscalls. It operates atomically and reliably. The specified upper bound is clamped to the actual size of the file descriptor table; it is expected that the most common use case is with last = UINT_MAX. Like in the Linux