s/sigev_signal/sigev_signo/

This commit is contained in:
Michael Kerrisk 2006-05-22 08:27:25 +00:00
parent 911db49ef9
commit 7cd244034d
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ union sigval { /* Data passed with notification */
struct sigevent {
int sigev_notify; /* Notification method */
int sigev_signal; /* Notification signal */
int sigev_signo; /* Notification signal */
union sigval sigev_value; /* Data passed with notification */
void (*sigev_notify_function) (union sigval);
/* Function for thread notification */
@ -82,7 +82,7 @@ for notification, but when a message arrives, no notification is sent.
.TP
.B SIGEV_SIGNAL
Notify the process by sending the signal specified in
.IR sigev_signal .
.IR sigev_signo .
If the signal is caught with a signal handler that
was registered using the
.BR sigaction (2)