On Wed, Nov 22, 2023 at 5:21 PM Ranjan Maitra via users users@lists.fedoraproject.org wrote:
On Wed Nov22'23 09:49:49PM, Barry Scott wrote:
[...]
On 22 Nov 2023, at 21:32, Barry Scott barry@barrys-emacs.org wrote:
Any suggestions as to what is going wrong here?
At this point you need get more information.
What do the folllowing GDB commands print?
p tstate p tstate->interp thread allow all bt
Doh...
thread apply all bt
I always type: t a a bt
and typo'ed the expansion.
Thanks, here is what comes out:
(gdb) p tstate->interp
value has been optimized out (gdb) thread apply all bt
Thread 1 (Thread 0x7ffff7ec7740 (LWP 387946) "python"): #0 0x00007ffff79e4b5b in _PyInterpreterState_GET () at /usr/src/debug/python3.12-3.12.0-1.fc39.x86_64/Include/internal/pycore_pystate.h:118 #1 get_state () at /usr/src/debug/python3.12-3.12.0-1.fc39.x86_64/Objects/obmalloc.c:866 #2 _PyObject_Free (ctx=<optimized out>, p=0x555556d898a0) at /usr/src/debug/python3.12-3.12.0-1.fc39.x86_64/Objects/obmalloc.c:1850 #3 0x00007fff9e5e292f in sip_api_free (mem=<optimized out>) at /usr/src/debug/sip-4.19.25-9.fc39.x86_64/siplib/siplib.c:2239 #4 sipOMFinalise (om=0x7fff9e5ff9a0 <cppPyMap.lto_priv.0>) at /usr/src/debug/sip-4.19.25-9.fc39.x86_64/susr/src/debug/python3.12-3.12.0-1.fc39.x86_64/Python/pylifecycle.c:1977
sip-4.19 is from 2018. The Python folks will probably tell you to update to something newer, like sip-6.7. Also see https://pypi.org/project/sip/#history.
#8 0x00007ffff7ab6337 in Py_RunMain () at /usr/src/debug/python3.12-3.12.0-1.fc39.x86_64/Modules/main.c:691 #9 0x00007ffff7a7185c in Py_BytesMain (argc=<optimized out>, argv=<optimized out>) at /usr/src/debug/python3.12-3.12.0-1.fc39.x86_64/Modules/main.c:743 #10 0x00007ffff764614a in __libc_start_call_main (main=main@entry=0x555555555160
Interesting... You are missing stack frames 5, 6 and 7. You have 0-4, and 8-10. That may indicate an issue with GDB.
Jeff