Updated platform specific notes (it is now more common to have this)

added some caveats.
This commit is contained in:
Guido van Rossum 1997-08-14 19:51:26 +00:00
parent 8f06247b51
commit 3572d3718b
2 changed files with 40 additions and 8 deletions

View File

@ -8,9 +8,9 @@ threads of control sharing their global data space. For
synchronization, simple locks (a.k.a.\ \dfn{mutexes} or \dfn{binary synchronization, simple locks (a.k.a.\ \dfn{mutexes} or \dfn{binary
semaphores}) are provided. semaphores}) are provided.
The module is optional and supported on SGI IRIX 4.x and 5.x and Sun The module is optional. It is supported on Windows NT and '95, SGI
Solaris 2.x systems, as well as on systems that have a PTHREAD IRIX, Solaris 2.x, as well as on systems that have a POSIX thread
implementation (e.g.\ KSR). (a.k.a. ``pthread'') implementation.
It defines the following constant and functions: It defines the following constant and functions:
@ -91,7 +91,7 @@ thread. (When the \code{signal} module is available, interrupts
always go to the main thread.) always go to the main thread.)
\item \item
Calling \code{sys.exit()} or raising the \code{SystemExit} is Calling \code{sys.exit()} or raising the \code{SystemExit} exception is
equivalent to calling \code{thread.exit_thread()}. equivalent to calling \code{thread.exit_thread()}.
\item \item
@ -99,4 +99,20 @@ Not all built-in functions that may block waiting for I/O allow other
threads to run. (The most popular ones (\code{sleep}, \code{read}, threads to run. (The most popular ones (\code{sleep}, \code{read},
\code{select}) work as expected.) \code{select}) work as expected.)
\item
It is not possible to interrupt the \code{acquire()} method on a lock
-- the \code{KeyboardInterrupt} exception will happen after the lock
has been acquired.
\item
When the main thread exits, it is system defined whether the other
threads survive. On SGI IRIX using the native thread implementation,
they survive. On most other systems, they are killed without
executing ``try-finally'' clauses or executing object destructors.
\item
When the main thread exits, it doesn't do any of its usual cleanup
(except that ``try-finally'' clauses are honored), and the standard
I/O files are not flushed.
\end{itemize} \end{itemize}

View File

@ -8,9 +8,9 @@ threads of control sharing their global data space. For
synchronization, simple locks (a.k.a.\ \dfn{mutexes} or \dfn{binary synchronization, simple locks (a.k.a.\ \dfn{mutexes} or \dfn{binary
semaphores}) are provided. semaphores}) are provided.
The module is optional and supported on SGI IRIX 4.x and 5.x and Sun The module is optional. It is supported on Windows NT and '95, SGI
Solaris 2.x systems, as well as on systems that have a PTHREAD IRIX, Solaris 2.x, as well as on systems that have a POSIX thread
implementation (e.g.\ KSR). (a.k.a. ``pthread'') implementation.
It defines the following constant and functions: It defines the following constant and functions:
@ -91,7 +91,7 @@ thread. (When the \code{signal} module is available, interrupts
always go to the main thread.) always go to the main thread.)
\item \item
Calling \code{sys.exit()} or raising the \code{SystemExit} is Calling \code{sys.exit()} or raising the \code{SystemExit} exception is
equivalent to calling \code{thread.exit_thread()}. equivalent to calling \code{thread.exit_thread()}.
\item \item
@ -99,4 +99,20 @@ Not all built-in functions that may block waiting for I/O allow other
threads to run. (The most popular ones (\code{sleep}, \code{read}, threads to run. (The most popular ones (\code{sleep}, \code{read},
\code{select}) work as expected.) \code{select}) work as expected.)
\item
It is not possible to interrupt the \code{acquire()} method on a lock
-- the \code{KeyboardInterrupt} exception will happen after the lock
has been acquired.
\item
When the main thread exits, it is system defined whether the other
threads survive. On SGI IRIX using the native thread implementation,
they survive. On most other systems, they are killed without
executing ``try-finally'' clauses or executing object destructors.
\item
When the main thread exits, it doesn't do any of its usual cleanup
(except that ``try-finally'' clauses are honored), and the standard
I/O files are not flushed.
\end{itemize} \end{itemize}