From 65c0f4271014bab1420ffde5c8aa6c5d259d73d7 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Sat, 19 Sep 2020 10:07:26 +0200 Subject: [PATCH] sigevent.7: ffix Signed-off-by: Michael Kerrisk --- man7/sigevent.7 | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/man7/sigevent.7 b/man7/sigevent.7 index 47f1613f1..58b10c391 100644 --- a/man7/sigevent.7 +++ b/man7/sigevent.7 @@ -30,25 +30,25 @@ sigevent \- structure for notification from asynchronous routines .nf #include .PP -union sigval { /* Data passed with notification */ - int sival_int; /* Integer value */ - void *sival_ptr; /* Pointer value */ +union sigval { /* Data passed with notification */ + int sival_int; /* Integer value */ + void *sival_ptr; /* Pointer value */ }; .PP struct sigevent { - int sigev_notify; /* Notification method */ - int sigev_signo; /* Notification signal */ - union sigval sigev_value; /* Data passed with - notification */ - void (*sigev_notify_function) (union sigval); - /* Function used for thread - notification (SIGEV_THREAD) */ - void *sigev_notify_attributes; - /* Attributes for notification thread - (SIGEV_THREAD) */ - pid_t sigev_notify_thread_id; - /* ID of thread to signal (SIGEV_THREAD_ID); - Linux-specific */ + int sigev_notify; /* Notification method */ + int sigev_signo; /* Notification signal */ + union sigval sigev_value; + /* Data passed with notification */ + void (*sigev_notify_function) (union sigval); + /* Function used for thread + notification (SIGEV_THREAD) */ + void *sigev_notify_attributes; + /* Attributes for notification thread + (SIGEV_THREAD) */ + pid_t sigev_notify_thread_id; + /* ID of thread to signal + (SIGEV_THREAD_ID); Linux-specific */ }; .fi .SH DESCRIPTION