Commit 15fb323a authored by Kurt B. Kaiser's avatar Kurt B. Kaiser

Document interrupt_main()

Remove obsolete reference to deprecated exit_thread() function
parent 27a5ba7d
...@@ -43,16 +43,16 @@ terminates with an unhandled exception, a stack trace is printed and ...@@ -43,16 +43,16 @@ terminates with an unhandled exception, a stack trace is printed and
then the thread exits (but other threads continue to run). then the thread exits (but other threads continue to run).
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{interrupt_main}{}
Raise a KeyboardInterrupt in the main thread. A subthread can use this
function to to interrupt the main thread.
\end{funcdesc}
\begin{funcdesc}{exit}{} \begin{funcdesc}{exit}{}
Raise the \exception{SystemExit} exception. When not caught, this Raise the \exception{SystemExit} exception. When not caught, this
will cause the thread to exit silently. will cause the thread to exit silently.
\end{funcdesc} \end{funcdesc}
\begin{funcdesc}{exit_thread}{}
\deprecated{1.5.2}{Use \function{exit()}.}
This is an obsolete synonym for \function{exit()}.
\end{funcdesc}
%\begin{funcdesc}{exit_prog}{status} %\begin{funcdesc}{exit_prog}{status}
%Exit all threads and report the value of the integer argument %Exit all threads and report the value of the integer argument
%\var{status} as the exit status of the entire program. %\var{status} as the exit status of the entire program.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment