index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
thread_pthread.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
1
-2/+2
*
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner
2020-04-14
1
-0/+1
*
bpo-40089: Add _at_fork_reinit() method to locks (GH-19195)
Victor Stinner
2020-04-07
1
-0/+20
*
Use calloc-based functions, not malloc. (GH-19152)
Andy Lester
2020-03-25
1
-2/+1
*
bpo-38852: Set thread stack size to 8 Mb for debug builds on android platform...
xdegaye
2019-12-08
1
-0/+10
*
bpo-38068: Clean up gettimeofday configure logic. (GH-15775)
Benjamin Peterson
2019-09-10
1
-8/+1
*
bpo-18049: Define THREAD_STACK_SIZE for AIX to pass default recursion limit t...
Michael Felt
2019-08-03
1
-0/+4
*
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
Ronald Oussoren
2019-08-01
1
-1/+2
*
bpo-37077: Add native thread ID (TID) for AIX (GH-13624)
Michael Felt
2019-06-13
1
-2/+7
*
bpo-37160: Thread native ID NetBSD support (GH-13835)
David Carlier
2019-06-12
1
-0/+5
*
bpo-37087: Adding native ID support for OpenBSD (GH-13654)
David Carlier
2019-06-03
1
-0/+5
*
bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)
Jake Tesler
2019-05-22
1
-0/+26
*
Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993...
Victor Stinner
2019-05-21
1
-27/+0
*
bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)
Jake Tesler
2019-05-12
1
-0/+27
*
bpo-36594: Fix incorrect use of %p in format strings (GH-12769)
Zackery Spytz
2019-05-06
1
-2/+2
*
bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068)
Victor Stinner
2019-05-04
1
-1/+1
*
bpo-12822: use monotonic clock for condvar if possible (GH-11723)
Inada Naoki
2019-02-20
1
-19/+62
*
bpo-33015: Fix UB in pthread PyThread_start_new_thread (GH-6008)
Siddhesh Poyarekar
2018-11-30
1
-4/+36
*
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner
2018-11-01
1
-3/+3
*
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Victor Stinner
2018-01-22
1
-10/+0
*
Replace KB unit with KiB (#4293)
Victor Stinner
2017-11-08
1
-1/+1
*
bpo-30768: Recompute timeout on interrupted lock (GH-4103)
Victor Stinner
2017-10-24
1
-6/+49
*
bpo-25658: Implement PEP 539 for Thread Specific Storage (TSS) API (GH-1362)
Masayuki Yamamoto
2017-10-06
1
-3/+87
*
remove support for BSD/OS (closes bpo-31624) (#3812)
Benjamin Peterson
2017-09-29
1
-21/+0
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-4/+5
*
Revert "bpo-30860: Consolidate stateful runtime globals." (#3379)
Eric Snow
2017-09-06
1
-5/+4
*
bpo-30860: Consolidate stateful runtime globals. (#2594)
Eric Snow
2017-09-06
1
-4/+5
*
bpo-30832: Remove own implementation for thread-local storage (#2537)
Masayuki Yamamoto
2017-07-03
1
-1/+0
*
bpo-30765: Avoid blocking when PyThread_acquire_lock() is asked not to (#2403)
Antoine Pitrou
2017-06-26
1
-45/+50
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
1
-9/+9
*
bpo-29859: Fix error messages from return codes for pthread_* calls (GH-741)
Daniel Birnstiel
2017-03-21
1
-11/+13
*
Issue #22206: Using pthread, PyThread_create_key() now sets errno to ENOMEM and
Victor Stinner
2014-08-17
1
-1/+9
*
Issue #19787: PyThread_set_key_value() now always set the value
Victor Stinner
2013-12-13
1
-3/+0
*
Backout changeset 46393019b650
Victor Stinner
2013-12-13
1
-0/+3
*
Close #19787: PyThread_set_key_value() now always set the value. In Python 3.3,
Victor Stinner
2013-12-13
1
-3/+0
*
Issue #18203: Replace malloc() with PyMem_RawMalloc() to allocate thread locks
Victor Stinner
2013-07-07
1
-6/+6
*
Issue #18256: Compilation fix for recent AIX releases. Patch by David Edelsohn.
Antoine Pitrou
2013-06-18
1
-0/+3
*
Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h
Christian Heimes
2012-12-02
1
-0/+3
|
\
|
*
Issue #16588: Silence unused-but-set warnings in Python/thread_pthread.h
Christian Heimes
2012-12-02
1
-0/+3
*
|
Signal condition variables with the mutex held. Destroy condition variables
Kristján Valur Jónsson
2012-06-05
1
-6/+9
*
|
Issue #14184: merge
Ned Deily
2012-03-13
1
-8/+12
|
\
\
|
|
/
|
*
Issue #14184: Increase the default stack size for secondary threads on
Ned Deily
2012-03-13
1
-8/+12
*
|
Issue #12469: partial revert of 024827a9db64, freebsd6 thread initialization
Victor Stinner
2011-07-04
1
-4/+1
*
|
Issue #12392: fix thread initialization on FreeBSD 6
Victor Stinner
2011-06-24
1
-1/+4
*
|
Issue #9670: Increase the default stack size for secondary threads on
Ned Deily
2011-05-28
1
-0/+12
|
\
\
|
|
/
|
*
Issue #9670: Increase the default stack size for secondary threads on
Ned Deily
2011-05-28
1
-0/+12
|
|
\
|
|
*
Issue #9670: Increase the default stack size for secondary threads on
Ned Deily
2011-05-28
1
-0/+12
*
|
|
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Antoine Pitrou
2011-05-04
1
-2/+2
|
\
\
\
|
|
/
/
|
*
|
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Antoine Pitrou
2011-05-04
1
-2/+2
*
|
|
Issue9670: Merge backout from 3.2.
Ned Deily
2011-04-09
1
-12/+0
|
\
\
\
|
|
/
/
[next]