diff options
| author | Alejandro Colomar <alx@kernel.org> | 2022-12-03 19:06:34 +0100 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2022-12-03 20:32:51 +0100 |
| commit | bc19b86a4b365c43cf2e72626bde78ac26ac75fd (patch) | |
| tree | 572873322addc1e30f60811aaa740dbd401ef31d | |
| parent | 6e7dcf377424ca7f5ec0754fed4cb3aaa23ed540 (diff) | |
| download | man-pages-bc19b86a4b365c43cf2e72626bde78ac26ac75fd.tar.gz | |
epoll_wait.2: SYNOPSIS: Add _Nullable
Signed-off-by: Alejandro Colomar <alx@kernel.org>
| -rw-r--r-- | man2/epoll_wait.2 | 7 |
1 files changed, 4 insertions, 3 deletions
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 |
