blob: 369e9cd01ec5133af9fa5f7e0a186b9289ba5709 [file] [log] [blame]
Georg Brandl2067bfd2008-05-25 13:05:15 +00001:mod:`_thread` --- Low-level threading API
2==========================================
Georg Brandl116aa622007-08-15 14:28:22 +00003
Georg Brandl2067bfd2008-05-25 13:05:15 +00004.. module:: _thread
5 :synopsis: Low-level threading API.
Georg Brandl116aa622007-08-15 14:28:22 +00006
7
8.. index::
9 single: light-weight processes
10 single: processes, light-weight
11 single: binary semaphores
12 single: semaphores, binary
13
14This module provides low-level primitives for working with multiple threads
Thomas Wouters89d996e2007-09-08 17:39:28 +000015(also called :dfn:`light-weight processes` or :dfn:`tasks`) --- multiple threads of
Georg Brandl116aa622007-08-15 14:28:22 +000016control sharing their global data space. For synchronization, simple locks
Thomas Wouters89d996e2007-09-08 17:39:28 +000017(also called :dfn:`mutexes` or :dfn:`binary semaphores`) are provided.
18The :mod:`threading` module provides an easier to use and higher-level
19threading API built on top of this module.
Georg Brandl116aa622007-08-15 14:28:22 +000020
21.. index::
22 single: pthreads
23 pair: threads; POSIX
24
25The module is optional. It is supported on Windows, Linux, SGI IRIX, Solaris
262.x, as well as on systems that have a POSIX thread (a.k.a. "pthread")
Georg Brandl2067bfd2008-05-25 13:05:15 +000027implementation. For systems lacking the :mod:`_thread` module, the
28:mod:`_dummy_thread` module is available. It duplicates this module's interface
Georg Brandl116aa622007-08-15 14:28:22 +000029and can be used as a drop-in replacement.
30
Antoine Pitrou7c3e5772010-04-14 15:44:10 +000031It defines the following constants and functions:
Georg Brandl116aa622007-08-15 14:28:22 +000032
33
34.. exception:: error
35
36 Raised on thread-specific errors.
37
38
39.. data:: LockType
40
41 This is the type of lock objects.
42
43
44.. function:: start_new_thread(function, args[, kwargs])
45
46 Start a new thread and return its identifier. The thread executes the function
47 *function* with the argument list *args* (which must be a tuple). The optional
48 *kwargs* argument specifies a dictionary of keyword arguments. When the function
49 returns, the thread silently exits. When the function terminates with an
50 unhandled exception, a stack trace is printed and then the thread exits (but
51 other threads continue to run).
52
53
54.. function:: interrupt_main()
55
56 Raise a :exc:`KeyboardInterrupt` exception in the main thread. A subthread can
57 use this function to interrupt the main thread.
58
Georg Brandl116aa622007-08-15 14:28:22 +000059
60.. function:: exit()
61
62 Raise the :exc:`SystemExit` exception. When not caught, this will cause the
63 thread to exit silently.
64
Christian Heimes5b5e81c2007-12-31 16:14:33 +000065..
66 function:: exit_prog(status)
67
68 Exit all threads and report the value of the integer argument
69 *status* as the exit status of the entire program.
70 **Caveat:** code in pending :keyword:`finally` clauses, in this thread
71 or in other threads, is not executed.
Georg Brandl116aa622007-08-15 14:28:22 +000072
73
74.. function:: allocate_lock()
75
76 Return a new lock object. Methods of locks are described below. The lock is
77 initially unlocked.
78
79
80.. function:: get_ident()
81
82 Return the 'thread identifier' of the current thread. This is a nonzero
83 integer. Its value has no direct meaning; it is intended as a magic cookie to
84 be used e.g. to index a dictionary of thread-specific data. Thread identifiers
85 may be recycled when a thread exits and another thread is created.
86
87
88.. function:: stack_size([size])
89
90 Return the thread stack size used when creating new threads. The optional
91 *size* argument specifies the stack size to be used for subsequently created
92 threads, and must be 0 (use platform or configured default) or a positive
93 integer value of at least 32,768 (32kB). If changing the thread stack size is
94 unsupported, a :exc:`ThreadError` is raised. If the specified stack size is
95 invalid, a :exc:`ValueError` is raised and the stack size is unmodified. 32kB
96 is currently the minimum supported stack size value to guarantee sufficient
97 stack space for the interpreter itself. Note that some platforms may have
98 particular restrictions on values for the stack size, such as requiring a
99 minimum stack size > 32kB or requiring allocation in multiples of the system
100 memory page size - platform documentation should be referred to for more
101 information (4kB pages are common; using multiples of 4096 for the stack size is
102 the suggested approach in the absence of more specific information).
103 Availability: Windows, systems with POSIX threads.
104
Georg Brandl116aa622007-08-15 14:28:22 +0000105
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000106.. data:: TIMEOUT_MAX
107
108 The maximum value allowed for the *timeout* parameter of
Georg Brandl6faee4e2010-09-21 14:48:28 +0000109 :meth:`Lock.acquire`. Specifying a timeout greater than this value will
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000110 raise an :exc:`OverflowError`.
111
Antoine Pitrouadbc0092010-04-19 14:05:51 +0000112 .. versionadded:: 3.2
113
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000114
Georg Brandl116aa622007-08-15 14:28:22 +0000115Lock objects have the following methods:
116
117
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000118.. method:: lock.acquire(waitflag=1, timeout=-1)
Georg Brandl116aa622007-08-15 14:28:22 +0000119
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000120 Without any optional argument, this method acquires the lock unconditionally, if
Georg Brandl116aa622007-08-15 14:28:22 +0000121 necessary waiting until it is released by another thread (only one thread at a
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000122 time can acquire a lock --- that's their reason for existence).
Georg Brandl116aa622007-08-15 14:28:22 +0000123
Antoine Pitrou7c3e5772010-04-14 15:44:10 +0000124 If the integer *waitflag* argument is present, the action depends on its
125 value: if it is zero, the lock is only acquired if it can be acquired
126 immediately without waiting, while if it is nonzero, the lock is acquired
127 unconditionally as above.
128
129 If the floating-point *timeout* argument is present and positive, it
130 specifies the maximum wait time in seconds before returning. A negative
131 *timeout* argument specifies an unbounded wait. You cannot specify
132 a *timeout* if *waitflag* is zero.
133
134 The return value is ``True`` if the lock is acquired successfully,
135 ``False`` if not.
Georg Brandl116aa622007-08-15 14:28:22 +0000136
Antoine Pitrouadbc0092010-04-19 14:05:51 +0000137 .. versionchanged:: 3.2
138 The *timeout* parameter is new.
139
Antoine Pitrou810023d2010-12-15 22:59:16 +0000140 .. versionchanged:: 3.2
141 Lock acquires can now be interrupted by signals on POSIX.
142
143
Georg Brandl116aa622007-08-15 14:28:22 +0000144.. method:: lock.release()
145
146 Releases the lock. The lock must have been acquired earlier, but not
147 necessarily by the same thread.
148
149
150.. method:: lock.locked()
151
152 Return the status of the lock: ``True`` if it has been acquired by some thread,
153 ``False`` if not.
154
155In addition to these methods, lock objects can also be used via the
156:keyword:`with` statement, e.g.::
157
Georg Brandl2067bfd2008-05-25 13:05:15 +0000158 import _thread
Georg Brandl116aa622007-08-15 14:28:22 +0000159
Georg Brandl2067bfd2008-05-25 13:05:15 +0000160 a_lock = _thread.allocate_lock()
Georg Brandl116aa622007-08-15 14:28:22 +0000161
162 with a_lock:
Collin Winterc79461b2007-09-01 23:34:30 +0000163 print("a_lock is locked while this executes")
Georg Brandl116aa622007-08-15 14:28:22 +0000164
165**Caveats:**
166
167 .. index:: module: signal
168
169* Threads interact strangely with interrupts: the :exc:`KeyboardInterrupt`
170 exception will be received by an arbitrary thread. (When the :mod:`signal`
171 module is available, interrupts always go to the main thread.)
172
173* Calling :func:`sys.exit` or raising the :exc:`SystemExit` exception is
Georg Brandla6053b42009-09-01 08:11:14 +0000174 equivalent to calling :func:`_thread.exit`.
Georg Brandl116aa622007-08-15 14:28:22 +0000175
176* Not all built-in functions that may block waiting for I/O allow other threads
177 to run. (The most popular ones (:func:`time.sleep`, :meth:`file.read`,
178 :func:`select.select`) work as expected.)
179
180* It is not possible to interrupt the :meth:`acquire` method on a lock --- the
181 :exc:`KeyboardInterrupt` exception will happen after the lock has been acquired.
182
Georg Brandl116aa622007-08-15 14:28:22 +0000183* When the main thread exits, it is system defined whether the other threads
Antoine Pitroue4754bd2010-04-19 14:09:57 +0000184 survive. On most systems, they are killed without executing
185 :keyword:`try` ... :keyword:`finally` clauses or executing object
186 destructors.
Georg Brandl116aa622007-08-15 14:28:22 +0000187
188* When the main thread exits, it does not do any of its usual cleanup (except
189 that :keyword:`try` ... :keyword:`finally` clauses are honored), and the
190 standard I/O files are not flushed.
Christian Heimes836baa52008-02-26 08:18:30 +0000191