From: Alejandro Colomar Date: Sat, 3 Dec 2022 18:06:34 +0000 (+0100) Subject: epoll_wait.2: SYNOPSIS: Add _Nullable X-Git-Tag: man-pages-6.02~113 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bc19b86a4b365c43cf2e72626bde78ac26ac75fd;p=thirdparty%2Fman-pages.git epoll_wait.2: SYNOPSIS: Add _Nullable Signed-off-by: Alejandro Colomar --- diff --git a/man2/epoll_wait.2 b/man2/epoll_wait.2 index 100a9211ed..59ad4fa3ff 100644 --- a/man2/epoll_wait.2 +++ b/man2/epoll_wait.2 @@ -21,10 +21,11 @@ Standard C library .BI " int " maxevents ", int " timeout ); .BI "int epoll_pwait(int " epfd ", struct epoll_event *" events , .BI " int " maxevents ", int " timeout , -.BI " const sigset_t *" sigmask ); +.BI " const sigset_t *_Nullable " sigmask ); .BI "int epoll_pwait2(int " epfd ", struct epoll_event *" events , -.BI " int " maxevents ", const struct timespec *" timeout , -.BI " const sigset_t *" sigmask ); +.BI " int " maxevents ", \ +const struct timespec *_Nullable " timeout , +.BI " const sigset_t *_Nullable " sigmask ); .fi .SH DESCRIPTION The