sigevent.7: ffix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2020-09-19 10:07:26 +02:00
parent 0b62a2e3bd
commit 65c0f42710
1 changed files with 16 additions and 16 deletions

View File

@ -38,8 +38,8 @@ union sigval { /* Data passed with notification */
struct sigevent {
int sigev_notify; /* Notification method */
int sigev_signo; /* Notification signal */
union sigval sigev_value; /* Data passed with
notification */
union sigval sigev_value;
/* Data passed with notification */
void (*sigev_notify_function) (union sigval);
/* Function used for thread
notification (SIGEV_THREAD) */
@ -47,8 +47,8 @@ struct sigevent {
/* Attributes for notification thread
(SIGEV_THREAD) */
pid_t sigev_notify_thread_id;
/* ID of thread to signal (SIGEV_THREAD_ID);
Linux-specific */
/* ID of thread to signal
(SIGEV_THREAD_ID); Linux-specific */
};
.fi
.SH DESCRIPTION