diff options
author | Victor Stinner <vstinner@python.org> | 2020-03-09 18:35:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-09 18:35:26 (GMT) |
commit | 6d0ee60740f2862a878f009671b1aaa75aeb0c2a (patch) | |
tree | 9f698f0abb3d9c70cc21d4162735339001ff275a /Misc | |
parent | e5ccc94bbb153431698b2391df625e8d47a93276 (diff) | |
download | cpython-6d0ee60740f2862a878f009671b1aaa75aeb0c2a.zip cpython-6d0ee60740f2862a878f009671b1aaa75aeb0c2a.tar.gz cpython-6d0ee60740f2862a878f009671b1aaa75aeb0c2a.tar.bz2 |
bpo-36184: Port python-gdb.py to FreeBSD (GH-18873)
python-gdb.py now checks for "take_gil" function name to check if a
frame tries to acquire the GIL, instead of checking for
"pthread_cond_timedwait" which is specific to Linux and can be a
different condition than the GIL.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Tools-Demos/2020-03-09-13-28-13.bpo-36184.BMPJ0D.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Tools-Demos/2020-03-09-13-28-13.bpo-36184.BMPJ0D.rst b/Misc/NEWS.d/next/Tools-Demos/2020-03-09-13-28-13.bpo-36184.BMPJ0D.rst new file mode 100644 index 0000000..2c845e7 --- /dev/null +++ b/Misc/NEWS.d/next/Tools-Demos/2020-03-09-13-28-13.bpo-36184.BMPJ0D.rst @@ -0,0 +1,4 @@ +Port python-gdb.py to FreeBSD. python-gdb.py now checks for "take_gil" +function name to check if a frame tries to acquire the GIL, instead of +checking for "pthread_cond_timedwait" which is specific to Linux and can be +a different condition than the GIL. |