[v2] epoll_wait.2: Glibc doesn't provide epoll_pwait2() yet

Message ID 20210206114303.4657-1-alx.manpages@gmail.com
State Not applicable
Headers
Series [v2] epoll_wait.2: Glibc doesn't provide epoll_pwait2() yet |

Commit Message

Alejandro Colomar Feb. 6, 2021, 11:43 a.m. UTC
  I filed a bug against glibc
requesting the wrapper for the new syscall.

Glibc bug: <https://sourceware.org/bugzilla/show_bug.cgi?id=27359>
Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
---

Hi Michael,

Yes, filing a bug is one better :-).

Cheers,

Alex

 man2/epoll_wait.2 | 3 +++
 1 file changed, 3 insertions(+)
  

Comments

Michael Kerrisk \(man-pages\) Feb. 6, 2021, 8:39 p.m. UTC | #1
Hi Alex,

On 2/6/21 12:43 PM, Alejandro Colomar wrote:
> I filed a bug against glibc
> requesting the wrapper for the new syscall.
> 
> Glibc bug: <https://sourceware.org/bugzilla/show_bug.cgi?id=27359>
> Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
> ---
> 
> Hi Michael,
> 
> Yes, filing a bug is one better :-).

Thanks * 2. Patch applied.

Cheers,

Michael

> 
> Cheers,
> 
> Alex
> 
>  man2/epoll_wait.2 | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/man2/epoll_wait.2 b/man2/epoll_wait.2
> index f0e432478..f941023c2 100644
> --- a/man2/epoll_wait.2
> +++ b/man2/epoll_wait.2
> @@ -35,6 +35,9 @@ epoll_wait, epoll_pwait, epoll_pwait2 \- wait for an I/O event on an epoll file
>  .BI "int epoll_pwait2(int " epfd ", struct epoll_event *" events ,
>  .BI "               int " maxevents ", const struct timespec *" timeout ,
>  .BI "               const sigset_t *" sigmask );
> +.\" FIXME: Check if glibc has added a wrapper for epoll_pwait2(),
> +.\"        and if so, check the prototype.
> +.\"        https://sourceware.org/bugzilla/show_bug.cgi?id=27359
>  .fi
>  .SH DESCRIPTION
>  The
>
  

Patch

diff --git a/man2/epoll_wait.2 b/man2/epoll_wait.2
index f0e432478..f941023c2 100644
--- a/man2/epoll_wait.2
+++ b/man2/epoll_wait.2
@@ -35,6 +35,9 @@  epoll_wait, epoll_pwait, epoll_pwait2 \- wait for an I/O event on an epoll file
 .BI "int epoll_pwait2(int " epfd ", struct epoll_event *" events ,
 .BI "               int " maxevents ", const struct timespec *" timeout ,
 .BI "               const sigset_t *" sigmask );
+.\" FIXME: Check if glibc has added a wrapper for epoll_pwait2(),
+.\"        and if so, check the prototype.
+.\"        https://sourceware.org/bugzilla/show_bug.cgi?id=27359
 .fi
 .SH DESCRIPTION
 The