Skip to content

Commit acca583

Browse files
committed
Be more specific.
1 parent d29d9e8 commit acca583

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

signals.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
\end{itemize}
147147
\item process can either choose to ignore a specific signal\dots
148148
\item \dots{}or can handle the signal via a user-defined function,
149-
called a \emsl{handler}
149+
called a \emph{handler}
150150
\end{itemize}
151151

152152
Signals \texttt{SIGKILL} and \texttt{SIGSTOP} \emsl{always} trigger an implicit
@@ -242,7 +242,7 @@
242242
over that error at all. It is not safe to ignore such errors, continue after
243243
returning from a handler, or mask such signals. You can catch such signals
244244
though, the standard does not prohibit that. However, if you do, you should do
245-
so only to deal with the situation and exit.
245+
so only to deal with the situation and exit from the handler (see above).
246246
You can check \example{signals/catch-SIGSEGV.c}. More information and another
247247
example can be found on page \pageref{THREADS_SIGWAIT}.
248248
\item Note: if the standard specifies any behavior as \emph{undefined}, it means

0 commit comments

Comments
 (0)