summaryrefslogtreecommitdiffstats
path: root/man3type/epoll_event.3type
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man3type/epoll_event.3type10
1 files changed, 5 insertions, 5 deletions
diff --git a/man3type/epoll_event.3type b/man3type/epoll_event.3type
index 0a9fa74..1ba679d 100644
--- a/man3type/epoll_event.3type
+++ b/man3type/epoll_event.3type
@@ -3,7 +3,7 @@
.\" SPDX-License-Identifier: Linux-man-pages-copyleft
.\"
.\"
-.TH epoll_event 3type 2023-07-08 "Linux man-pages 6.05.01"
+.TH epoll_event 3type 2023-10-31 "Linux man-pages 6.7"
.SH NAME
epoll_event, epoll_data, epoll_data_t
\- epoll event
@@ -13,19 +13,19 @@ Standard C library
.SH SYNOPSIS
.EX
.B #include <sys/epoll.h>
-.PP
+.P
.B struct epoll_event {
.BR " uint32_t events;" " /* Epoll events */"
.BR " epoll_data_t data;" " /* User data variable */"
.B };
-.PP
+.P
.B union epoll_data {
.B " void *ptr;"
.B " int fd;"
.B " uint32_t u32;"
.B " uint64_t u64;"
.B };
-.PP
+.P
.B "typedef union epoll_data epoll_data_t;"
.EE
.SH DESCRIPTION
@@ -37,7 +37,7 @@ return when the corresponding file descriptor becomes ready.
.SS C library/kernel differences
The Linux kernel headers also provide this type,
with a slightly different definition:
-.PP
+.P
.in +4n
.EX
#include <linux/eventpoll.h>