Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
15fb323a
Commit
15fb323a
authored
Jul 08, 2003
by
Kurt B. Kaiser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document interrupt_main()
Remove obsolete reference to deprecated exit_thread() function
parent
27a5ba7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Doc/lib/libthread.tex
Doc/lib/libthread.tex
+5
-5
No files found.
Doc/lib/libthread.tex
View file @
15fb323a
...
...
@@ -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).
\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
}{}
Raise the
\exception
{
SystemExit
}
exception. When not caught, this
will cause the thread to exit silently.
\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}
%Exit all threads and report the value of the integer argument
%\var{status} as the exit status of the entire program.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment