Edgewall Software

This page documents the 1.4 (latest stable) release. Documentation for other releases can be found here.

TicketQuery Wiki Macro

The TicketQuery macro lets you display ticket information anywhere that accepts WikiFormatting. The query language used by the [[TicketQuery]] macro is described in the TracQuery page.

Usage

[[TicketQuery]]

Wiki macro listing tickets that match certain criteria.

This macro accepts a comma-separated list of keyed parameters, in the form "key=value".

If the key is the name of a field, the value must use the syntax of a filter specifier as defined in TracQuery#QueryLanguage. Note that this is not the same as the simplified URL syntax used for query: links starting with a ? character. Commas (,) can be included in field values by escaping them with a backslash (\).

Groups of field constraints to be OR-ed together can be separated by a literal or argument.

In addition to filters, several other named parameters can be used to control how the results are presented. All of them are optional.

The format parameter determines how the list of tickets is presented:

  • list — the default presentation is to list the ticket ID next to the summary, with each ticket on a separate line.
  • compact — the tickets are presented as a comma-separated list of ticket IDs.
  • count — only the count of matching tickets is displayed
  • rawcount — only the count of matching tickets is displayed, not even with a link to the corresponding query (since 1.1.1)
  • table — a view similar to the custom query view (but without the controls)
  • progress — a view similar to the milestone progress bars

The max parameter can be used to limit the number of tickets shown (defaults to 0, i.e. no maximum).

The order parameter sets the field used for ordering tickets (defaults to id).

The desc parameter indicates whether the order of the tickets should be reversed (defaults to false).

The group parameter sets the field used for grouping tickets (defaults to not being set).

The groupdesc parameter indicates whether the natural display order of the groups should be reversed (defaults to false).

The verbose parameter can be set to a true value in order to get the description for the listed tickets. For table format only. deprecated in favor of the rows parameter

The rows parameter can be used to specify which field(s) should be viewed as a row, e.g. rows=description|summary

The col parameter can be used to specify which fields should be viewed as columns. For table format only.

For compatibility with Trac 0.10, if there's a last positional parameter given to the macro, it will be used to specify the format. Also, using "&" as a field separator still works (except for order) but is deprecated.

Examples

Example Result Macro
Number of Triage tickets: 30 [[TicketQuery(status=new&milestone=,count)]]
Number of new tickets: 1073 [[TicketQuery(status=new,count)]]
Number of reopened tickets: 6 [[TicketQuery(status=reopened,count)]]
Number of assigned tickets: 25 [[TicketQuery(status=assigned,count)]]
Number of invalid tickets: 1515 [[TicketQuery(status=closed,resolution=invalid,count)]]
Number of worksforme tickets: 1420 [[TicketQuery(status=closed,resolution=worksforme,count)]]
Number of duplicate tickets: 2194 [[TicketQuery(status=closed,resolution=duplicate,count)]]
Number of wontfix tickets: 994 [[TicketQuery(status=closed,resolution=wontfix,count)]]
Number of fixed tickets: 4616 [[TicketQuery(status=closed,resolution=fixed,count)]]
Number of untriaged tickets (milestone unset): 34 [[TicketQuery(status!=closed,milestone=,count)]]
Total number of tickets: 12438 [[TicketQuery(count)]]
Number of tickets reported or owned by current user: 1853 [[TicketQuery(reporter=$USER,or,owner=$USER,count)]]
Number of tickets created this month: 9 [[TicketQuery(created=thismonth..,count)]]
Number of closed Firefox tickets: 13 [[TicketQuery(status=closed,keywords~=firefox,count)]]
Number of closed Opera tickets: 12 [[TicketQuery(status=closed,keywords~=opera,count)]]
Number of closed tickets affecting Firefox and Opera: 1 [[TicketQuery(status=closed,keywords~=firefox opera,count)]]
Number of closed tickets affecting Firefox or Opera: 24 [[TicketQuery(status=closed,keywords~=firefox|opera,count)]]
Number of tickets that affect Firefox or are closed and affect Opera: 25 [[TicketQuery(status=closed,keywords~=opera,or,keywords~=firefox,count)]]
Number of closed Firefox tickets that don't affect Opera: 1 [[TicketQuery(status=closed,keywords~=firefox -opera,count)]]
Last 3 modified tickets: #13907, #13786, #13906 [[TicketQuery(max=3,order=modified,desc=1,compact)]]

Details of ticket #1:

[[TicketQuery(id=1,col=id|owner|reporter,rows=summary,table)]]

Ticket Owner Reporter
#1 anonymous
Summary Add a new project summary module.

Format: list

[[TicketQuery(version=0.6|0.7&resolution=duplicate)]]

This is displayed as:

#181
Wiki preview injects new lines
#204
request for colour legend (or something similar) for ticket groups in reports
#226
Ticket Dependencies
#239
Link to diff of specifik wiki change instead of the page itself
#351
All ticket modifications should be tracked in timeline
#413
Installing on Windows, drive other than C:
#450
Diffviewer should try to convert the text into utf-8.
#475
merging of similar tickets
#519
Python process sometimes hangs on Windows Server 2003
#529
IE 5-6 over HTTPS broken downloads

[[TicketQuery(id=123)]]

This is displayed as:

#123
No SQL error display

Format: compact

[[TicketQuery(version=0.6|0.7&resolution=duplicate, compact)]]

This is displayed as:

#181, #204, #226, #239, #351, #413, #450, #475, #519, #529

Format: count

[[TicketQuery(version=0.6|0.7&resolution=duplicate, count)]]

This is displayed as:

10

Format: progress

[[TicketQuery(milestone=0.12.8&group=type,format=progress)]]

This is displayed as:

defect

5 / 5

enhancement

2 / 2

Format: table

You can choose the columns displayed in the table format (format=table) using col=<field>. You can specify multiple fields and the order they are displayed in by placing pipes (|) between the columns:

[[TicketQuery(max=3,status=closed,order=id,desc=1,format=table,col=resolution|summary|owner|reporter)]]

This is displayed as:

Full rows

In table format you can specify full rows using rows=<field>:

[[TicketQuery(max=3,status=closed,order=id,desc=1,format=table,col=resolution|summary|owner|reporter,rows=description)]]

This is displayed as:

Results (1 - 3 of 11334)

1 2 3 4 5 6 7 8 9 10 11
Ticket Resolution Summary Owner Reporter
#13906 fixed DeprecationWarning: os.path.commonprefix() is deprecated since Python 3.15 Jun Omae Jun Omae
Description
trac/attachment.py:979: DeprecationWarning: os.path.commonprefix() is deprecated. Use os.path.commonpath() for longest path prefix.
  commonprefix = os.path.commonprefix([self.env.attachments_dir, path])
$ git grep '\<commonprefix('
trac/attachment.py:        commonprefix = os.path.commonprefix([self.env.attachments_dir, path])
trac/mimeview/patch.py:                    commonprefix = ''.join(os.path.commonprefix(
trac/mimeview/patch.py:                    commonsuffix = ''.join(os.path.commonprefix(
trac/versioncontrol/web_ui/changeset.py:            return '/'.join(os.path.commonprefix([f.split('/')
trac/web/chrome.py:                if os.path.commonprefix([dir, path]) != dir:
#13905 fixed div processor with `style` (no value) raises a TypeError Jun Omae Jun Omae
Description
{{{#!div style
text
}}}

As the result, the following is displayed:

Error: Processor div failed
sequence item 0: expected str instance, bool found

Traceback

04:26:04 AM Trac[formatter] ERROR: Processor div failed for <Resource 'ticket'>:
Traceback (most recent call last):
  File "/src/tracdev/git/trac/wiki/formatter.py", line 1220, in _exec_processor
    return processor.process(text)
  File "/src/tracdev/git/trac/wiki/formatter.py", line 380, in process
    text = self.processor(text)
  File "/src/tracdev/git/trac/wiki/formatter.py", line 262, in _div_processor
    return self._elt_processor('div', format_to_html, text)
  File "/src/tracdev/git/trac/wiki/formatter.py", line 249, in _elt_processor
    elt = getattr(tag, eltname)(**(self.args or {}))
  File "/src/tracdev/git/trac/util/html.py", line 411, in __call__
    d = self._dict_from_kwargs(kwargs)
  File "/src/tracdev/git/trac/util/html.py", line 404, in _dict_from_kwargs
    v = self._attr_value(k, v)
  File "/src/tracdev/git/trac/util/html.py", line 457, in _attr_value
    return html_attribute(k, v)
  File "/src/tracdev/git/trac/util/html.py", line 252, in html_attribute
    val = styles(val) or None
  File "/src/tracdev/git/trac/util/html.py", line 329, in styles
    return '; '.join(styles)
TypeError: sequence item 0: expected str instance, bool found
#13901 invalid lyx 2.5.0 is crashing frequently in kubuntu 26.04 LTS manuel <mfg@…>
Description
           PID: 23037 (lyx)
           UID: 1000 (mfg)
           GID: 1000 (mfg)
        Signal: 6 (ABRT)
     Timestamp: Tue 2026-06-02 15:30:52 CST (1h 9min ago)
  Command Line: /usr/bin/lyx
    Executable: /usr/bin/lyx
 Control Group: /user.slice/user-1000.slice/user@1000.service/app.slice/app-lyx@1e51664126b149ef9a37a2256cebd490.service
          Unit: user@1000.service
     User Unit: app-lyx@1e51664126b149ef9a37a2256cebd490.service
         Slice: user-1000.slice
     Owner UID: 1000 (mfg)
       Boot ID: 878af8f234ae4e4aa83052543604c0b3
    Machine ID: 86672a9a18d347fe8a16644fd12f0514
      Hostname: joyjetel
       Storage: /var/lib/systemd/coredump/core.lyx.1000.878af8f234ae4e4aa83052543604c0b3.23037.1780435852000000.zst (present)
  Size on Disk: 63.5M
       Package: lyx/2.5.0-1
      build-id: 687e53b04da0c8a53b7bc8790de87eca3dd5b0d6
       Message: Process 23037 (lyx) of user 1000 dumped core.
                
                Module /usr/bin/lyx from deb lyx-2.5.0-1.amd64
                Module linux-vdso.so.1 from deb linux-7.0.0-22.22.amd64
                Module KF6WindowSystemKWaylandPlugin.so from deb kf6-kwindowsystem-6.24.0-0ubuntu1.amd64
                Module enchant_hunspell.so from deb enchant-2-2.8.2+dfsg1-3build1.amd64
                Module enchant_hspell.so from deb enchant-2-2.8.2+dfsg1-3build1.amd64
                Module libaspell.so.15 from deb aspell-0.60.8.2-3.amd64
                Module enchant_aspell.so from deb enchant-2-2.8.2+dfsg1-3build1.amd64
                Module kimg_ani.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_ora.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libdeflate.so.0 from deb libdeflate-1.23-2ubuntu1.amd64
                Module libjbig.so.0 from deb jbigkit-2.1-6.1ubuntu3.amd64
                Module libLerc.so.4 from deb lerc-4.0.0+ds-5ubuntu2.amd64
                Module libtiff.so.6 from deb tiff-4.7.0-3ubuntu4.amd64
                Module libqtiff.so from deb qt6-imageformats-6.10.2-1.amd64
                Module kimg_xcf.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libqgif.so from deb qt6-base-6.10.2+dfsg-7.amd64
                Module kimg_sct.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_tga.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_psd.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libhwy.so.1 from deb highway-1.3.0-2.amd64
                Module libjxl_cms.so.0.11 from deb jpeg-xl-0.11.1-6ubuntu4.amd64
                Module libjxl_threads.so.0.11 from deb jpeg-xl-0.11.1-6ubuntu4.amd64
                Module libjxl.so.0.11 from deb jpeg-xl-0.11.1-6ubuntu4.amd64
                Module kimg_jxl.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_kra.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libopenjp2.so.7 from deb openjpeg2-2.5.4-1ubuntu0.1.amd64
                Module kimg_jp2.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libmng.so.2 from deb libmng-2.0.3+dfsg-5.amd64
                Module libqmng.so from deb qt6-imageformats-6.10.2-1.amd64
                Module kimg_pfm.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_pxr.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module liblcms2.so.2 from deb lcms2-2.17-1ubuntu0.2.amd64
                Module libraw.so.23 from deb libraw-0.21.5b-1ubuntu1.amd64
                Module kimg_raw.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_ras.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_pic.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libwebp.so.7 from deb libwebp-1.5.0-0.1build1.amd64
                Module libwebpmux.so.3 from deb libwebp-1.5.0-0.1build1.amd64
                Module libwebpdemux.so.2 from deb libwebp-1.5.0-0.1build1.amd64
                Module libqwebp.so from deb qt6-imageformats-6.10.2-1.amd64
                Module kimg_dds.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libbrotlienc.so.1 from deb brotli-1.2.0-3build1.amd64
                Module libsharpyuv.so.0 from deb libwebp-1.5.0-0.1build1.amd64
                Module libheif.so.1 from deb libheif-1.21.2-3.amd64
                Module kimg_heif.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libabsl_utf8_for_code_point.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_decode_rust_punycode.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_throw_delegate.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_strings_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_demangle_rust.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_hash.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_time_zone.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_strings.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_demangle_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_debugging_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_borrowed_fixup_buffer.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_spinlock_wait.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_raw_logging_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_base.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_malloc_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_tracing_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_time.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_symbolize.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_stacktrace.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_kernel_timeout_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_graphcycles_internal.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libabsl_synchronization.so.20260107 from deb abseil-20260107.0-4.amd64
                Module libaom.so.3 from deb aom-3.13.1-2.amd64
                Module libgav1.so.2 from deb libgav1-0.20.0-2build1.amd64
                Module libdav1d.so.7 from deb dav1d-1.5.3-1.amd64
                Module libyuv.so.0 from deb libyuv-0.0.1922.20260106-1.amd64
                Module libavif.so.16 from deb libavif-1.3.0-1ubuntu4.amd64
                Module kimg_avif.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_pcx.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_qoi.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libIlmThread-3_1.so.30 from deb openexr-3.1.13-2build1.amd64
                Module libIex-3_1.so.30 from deb openexr-3.1.13-2build1.amd64
                Module libImath-3_1.so.29 from deb imath-3.1.12-1ubuntu5.amd64
                Module libOpenEXR-3_1.so.30 from deb openexr-3.1.13-2build1.amd64
                Module kimg_exr.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libqicns.so from deb qt6-imageformats-6.10.2-1.amd64
                Module kimg_eps.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libqico.so from deb qt6-base-6.10.2+dfsg-7.amd64
                Module kimg_iff.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libjpeg.so.8 from deb libjpeg-turbo-2.1.5-4ubuntu4.amd64
                Module libqjpeg.so from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libqwbmp.so from deb qt6-imageformats-6.10.2-1.amd64
                Module kimg_rgb.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module kimg_hdr.so from deb kf6-kimageformats-6.24.0-0ubuntu1.amd64
                Module libqsvg.so from deb qt6-svg-6.10.2-2.amd64
                Module libKF6Style.so.6 from deb kf6-frameworkintegration-6.24.0-0ubuntu1.amd64
                Module libKirigamiPlatform.so.6 from deb kf6-kirigami-6.24.0-0ubuntu1.amd64
                Module breeze6.so from deb breeze-4:6.6.4-0ubuntu1.amd64
                Module libmd.so.0 from deb libmd-1.1.0-2build4.amd64
                Module libbsd.so.0 from deb libbsd-0.12.2-2build2.amd64
                Module libtinfo.so.6 from deb ncurses-6.6+20251231-1.amd64
                Module libpciaccess.so.0 from deb libpciaccess-0.18.1-1ubuntu4.amd64
                Module libxml2.so.16 from deb libxml2-2.15.2+dfsg-0.1.amd64
                Module libedit.so.2 from deb libedit-3.1-20251016-1.amd64
                Module libdrm_intel.so.1 from deb libdrm-2.4.131-1.amd64
                Module libdrm_amdgpu.so.1 from deb libdrm-2.4.131-1.amd64
                Module libelf.so.1 from deb elfutils-0.194-4.amd64
                Module libxshmfence.so.1 from deb libxshmfence-1.3.3-1build1.amd64
                Module libxcb-sync.so.1 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libsensors.so.5 from deb lm-sensors-1:3.6.2-2build1.amd64
                Module libLLVM.so.21.1 from deb llvm-toolchain-21-1:21.1.8-6ubuntu1.amd64
                Module libxcb-shm.so.0 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libxcb-xfixes.so.0 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libxcb-randr.so.0 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libgallium-26.0.3-1ubuntu1.so from deb mesa-26.0.3-1ubuntu1.amd64
                Module libEGL_mesa.so.0 from deb mesa-26.0.3-1ubuntu1.amd64
                Module libX11-xcb.so.1 from deb libx11-2:1.8.13-1.amd64
                Module libxcb-present.so.0 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libxcb-dri3.so.0 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libgbm.so.1 from deb mesa-26.0.3-1ubuntu1.amd64
                Module libdrm.so.2 from deb libdrm-2.4.131-1.amd64
                Module libwayland-server.so.0 from deb wayland-1.24.0-2.amd64
                Module libnvidia-egl-wayland.so.1 from deb egl-wayland-1:1.1.21-1.amd64
                Module libwayland-egl.so.1 from deb wayland-1.24.0-2.amd64
                Module libqt-plugin-wayland-egl.so from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libtasn1.so.6 from deb libtasn1-6-4.21.0-2.amd64
                Module libp11-kit.so.0 from deb p11-kit-0.26.2-2.amd64
                Module libsasl2.so.2 from deb cyrus-sasl2-2.1.28+dfsg1-9ubuntu3.amd64
                Module libgmp.so.10 from deb gmp-2:6.3.0+dfsg-5ubuntu2.amd64
                Module libhogweed.so.6 from deb nettle-3.10.2-1.amd64
                Module libunistring.so.5 from deb libunistring-1.3-2build1.amd64
                Module libgnutls.so.30 from deb gnutls28-3.8.12-2ubuntu1.1.amd64
                Module libnettle.so.8 from deb nettle-3.10.2-1.amd64
                Module libpsl.so.5 from deb libpsl-0.21.2-1.1build2.amd64
                Module libssh2.so.1 from deb libssh2-1.11.1-1ubuntu0.26.04.1.amd64
                Module liblber.so.2 from deb openldap-2.6.10+dfsg-1ubuntu5.amd64
                Module libldap.so.2 from deb openldap-2.6.10+dfsg-1ubuntu5.amd64
                Module librtmp.so.1 from deb rtmpdump-2.4+20151223.gitfa8646d.1-3.amd64
                Module libidn2.so.0 from deb libidn2-2.3.8-4build1.amd64
                Module libnghttp2.so.14 from deb nghttp2-1.68.0-2ubuntu0.1.amd64
                Module libogg.so.0 from deb libogg-1.3.6-2.amd64
                Module libvorbis.so.0 from deb libvorbis-1.3.7-3build2.amd64
                Module libgio-2.0.so.0 from deb glib2.0-2.88.0-1.amd64
                Module libcurl-gnutls.so.4 from deb curl-8.18.0-1ubuntu2.1.amd64
                Module libkeyutils.so.1 from deb keyutils-1.6.3-6ubuntu3.amd64
                Module libltdl.so.7 from deb libtool-2.5.4-9.amd64
                Module libtdb.so.1 from deb samba-2:4.23.6+dfsg-1ubuntu2.1.amd64
                Module libvorbisfile.so.3 from deb libvorbis-1.3.7-3build2.amd64
                Module libpxbackend-1.0.so from deb libproxy-0.5.12-1.amd64
                Module libkrb5support.so.0 from deb krb5-1.22.1-2ubuntu4.amd64
                Module libcom_err.so.2 from deb e2fsprogs-1.47.2-3ubuntu4.amd64
                Module libk5crypto.so.3 from deb krb5-1.22.1-2ubuntu4.amd64
                Module libkrb5.so.3 from deb krb5-1.22.1-2ubuntu4.amd64
                Module libimobiledevice-glue-1.0.so.0 from deb libimobiledevice-glue-1.3.2-2build1.amd64
                Module libusbmuxd-2.0.so.7 from deb libusbmuxd-2.1.1-1.amd64
                Module libssl.so.3 from deb openssl-3.5.5-1ubuntu3.amd64
                Module libcrypto.so.3 from deb openssl-3.5.5-1ubuntu3.amd64
                Module libcanberra.so.0 from deb libcanberra-0.30-18ubuntu3.amd64
                Module libselinux.so.1 from deb libselinux-3.9-4build1.amd64
                Module libblkid.so.1 from deb util-linux-2.41.3-3ubuntu2.amd64
                Module libQt6QmlWorkerScript.so.6 from deb qt6-declarative-6.10.2+dfsg-3.amd64
                Module libproxy.so.1 from deb libproxy-0.5.12-1.amd64
                Module libgssapi_krb5.so.2 from deb krb5-1.22.1-2ubuntu4.amd64
                Module libplist-2.0.so.4 from deb libplist-2.7.0+git20250820-1build1.amd64
                Module libimobiledevice-1.0.so.6 from deb libimobiledevice-1.4.0-1build1.amd64
                Module libKF6BreezeIcons.so.6 from deb kf6-breeze-icons-6.24.0-0ubuntu1.amd64
                Module libKF6Archive.so.6 from deb kf6-karchive-6.24.0-0ubuntu1.amd64
                Module libudev.so.1 from deb systemd-259.5-0ubuntu3.amd64
                Module libKF6Codecs.so.6 from deb kf6-kcodecs-6.24.0-0ubuntu1.amd64
                Module libKF6Notifications.so.6 from deb kf6-knotifications-6.24.0-0ubuntu1.amd64
                Module libmount.so.1 from deb util-linux-2.41.3-3ubuntu2.amd64
                Module libKF6Crash.so.6 from deb kf6-kcrash-6.24.0-0ubuntu1.amd64
                Module libQt6OpenGL.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libQt6QmlModels.so.6 from deb qt6-declarative-6.10.2+dfsg-3.amd64
                Module libQt6QmlMeta.so.6 from deb qt6-declarative-6.10.2+dfsg-3.amd64
                Module libXrender.so.1 from deb libxrender-1:0.9.12-1build1.amd64
                Module libxcb-keysyms.so.1 from deb xcb-util-keysyms-0.4.1-1build1.amd64
                Module libXfixes.so.3 from deb libxfixes-1:6.0.0-2build2.amd64
                Module libxcb-res.so.0 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libQt6PrintSupport.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libKF6ConfigWidgets.so.6 from deb kf6-kconfigwidgets-6.24.0-0ubuntu1.amd64
                Module libKF6GlobalAccel.so.6 from deb kf6-kglobalaccel-6.24.0-0ubuntu1.amd64
                Module libQt6Network.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libQt6Xml.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libKF6Bookmarks.so.6 from deb kf6-kbookmarks-6.24.0-0ubuntu1.amd64
                Module libKF6Solid.so.6 from deb kf6-solid-6.24.0-0ubuntu1.amd64
                Module libKF6BookmarksWidgets.so.6 from deb kf6-kbookmarks-6.24.0-0ubuntu1.amd64
                Module libKF6IconWidgets.so.6 from deb kf6-kiconthemes-6.24.0-0ubuntu2.amd64
                Module libKF6ItemViews.so.6 from deb kf6-kitemviews-6.24.0-0ubuntu1.amd64
                Module libQt6Qml.so.6 from deb qt6-declarative-6.10.2+dfsg-3.amd64
                Module libQt6QuickTemplates2.so.6 from deb qt6-declarative-6.10.2+dfsg-3.amd64
                Module libKF6WidgetsAddons.so.6 from deb kf6-kwidgetsaddons-6.24.0-0ubuntu1.amd64
                Module libKF6I18n.so.6 from deb kf6-ki18n-6.24.0-0ubuntu1.amd64
                Module libKF6GuiAddons.so.6 from deb kf6-kguiaddons-6.24.0-0ubuntu1.1.amd64
                Module libKF6ConfigCore.so.6 from deb kf6-kconfig-6.24.0-0ubuntu1.amd64
                Module libKF6ConfigGui.so.6 from deb kf6-kconfig-6.24.0-0ubuntu1.amd64
                Module libKF6ColorScheme.so.6 from deb kf6-kcolorscheme-6.24.0-0ubuntu1.amd64
                Module libKF6IconThemes.so.6 from deb kf6-kiconthemes-6.24.0-0ubuntu2.amd64
                Module libKF6CoreAddons.so.6 from deb kf6-kcoreaddons-6.24.0-0ubuntu1.amd64
                Module libKF6Completion.so.6 from deb kf6-kcompletion-6.24.0-0ubuntu1.amd64
                Module libKF6Service.so.6 from deb kf6-kservice-6.24.0-0ubuntu1.amd64
                Module libKF6JobWidgets.so.6 from deb kf6-kjobwidgets-6.24.0-0ubuntu1.amd64
                Module libKF6KIOCore.so.6 from deb kf6-kio-6.24.0-0ubuntu1.amd64
                Module libQt6Quick.so.6 from deb qt6-declarative-6.10.2+dfsg-3.amd64
                Module libXcursor.so.1 from deb libxcursor-1:1.2.3-1build1.amd64
                Module libKF6WindowSystem.so.6 from deb kf6-kwindowsystem-6.24.0-0ubuntu1.amd64
                Module libKF6XmlGui.so.6 from deb kf6-kxmlgui-6.24.0-0ubuntu1.amd64
                Module libKF6StatusNotifierItem.so.6 from deb kf6-kstatusnotifieritem-6.24.0-0ubuntu1.amd64
                Module libKF6KIOGui.so.6 from deb kf6-kio-6.24.0-0ubuntu1.amd64
                Module libKF6KIOWidgets.so.6 from deb kf6-kio-6.24.0-0ubuntu1.amd64
                Module libKF6KIOFileWidgets.so.6 from deb kf6-kio-6.24.0-0ubuntu1.amd64
                Module libQt6QuickControls2.so.6 from deb qt6-declarative-6.10.2+dfsg-3.amd64
                Module KDEPlasmaPlatformTheme6.so from deb plasma-integration-6.6.4-0ubuntu1.amd64
                Module libxdg-shell.so from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libwayland-cursor.so.0 from deb wayland-1.24.0-2.amd64
                Module libwayland-client.so.0 from deb wayland-1.24.0-2.amd64
                Module libQt6WaylandClient.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libqwayland.so from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libbrotlicommon.so.1 from deb brotli-1.2.0-3build1.amd64
                Module libsystemd.so.0 from deb systemd-259.5-0ubuntu3.amd64
                Module libXdmcp.so.6 from deb libxdmcp-1:1.1.5-2.amd64
                Module libXau.so.6 from deb libxau-1:1.0.11-1build2.amd64
                Module libgomp.so.1 from deb gcc-16-16-20260322-1ubuntu1.amd64
                Module libicudata.so.78 from deb icu-78.2-2ubuntu1.amd64
                Module libbrotlidec.so.1 from deb brotli-1.2.0-3build1.amd64
                Module libgraphite2.so.3 from deb graphite2-1.3.14-11ubuntu1.amd64
                Module libdbus-1.so.3 from deb dbus-1.16.2-2ubuntu4.amd64
                Module libxcb.so.1 from deb libxcb-1.17.0-2ubuntu1.amd64
                Module libexpat.so.1 from deb expat-2.7.4-1.amd64
                Module libGLdispatch.so.0 from deb libglvnd-1.7.0-3.amd64
                Module libpcre2-8.so.0 from deb pcre2-10.46-1build1.amd64
                Module libatomic.so.1 from deb gcc-16-16-20260322-1ubuntu1.amd64
                Module libffi.so.8 from deb libffi-3.5.2-4.amd64
                Module libzstd.so.1 from deb libzstd-1.5.7+dfsg-3.amd64
                Module libpcre2-16.so.0 from deb pcre2-10.46-1build1.amd64
                Module libb2.so.1 from deb libb2-0.98.1-1.1build2.amd64
                Module libdouble-conversion.so.3 from deb double-conversion-3.4.0-1.amd64
                Module libicuuc.so.78 from deb icu-78.2-2ubuntu1.amd64
                Module libicui18n.so.78 from deb icu-78.2-2ubuntu1.amd64
                Module libfreetype.so.6 from deb freetype-2.14.2+dfsg-1.amd64
                Module libmd4c.so.0 from deb md4c-0.5.2-2build1.amd64
                Module libharfbuzz.so.0 from deb harfbuzz-12.3.2-2.amd64
                Module libpng16.so.16 from deb libpng1.6-1.6.57-1.amd64
                Module libOpenGL.so.0 from deb libglvnd-1.7.0-3.amd64
                Module libGLX.so.0 from deb libglvnd-1.7.0-3.amd64
                Module libxkbcommon.so.0 from deb libxkbcommon-1.13.1-1.amd64
                Module libQt6DBus.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libX11.so.6 from deb libx11-2:1.8.13-1.amd64
                Module libfontconfig.so.1 from deb fontconfig-2.17.1-3ubuntu1.amd64
                Module libEGL.so.1 from deb libglvnd-1.7.0-3.amd64
                Module libbz2.so.1.0 from deb bzip2-1.0.8-6build2.amd64
                Module liblzma.so.5 from deb xz-utils-5.8.3-1.amd64
                Module libglib-2.0.so.0 from deb glib2.0-2.88.0-1.amd64
                Module libgobject-2.0.so.0 from deb glib2.0-2.88.0-1.amd64
                Module libgmodule-2.0.so.0 from deb glib2.0-2.88.0-1.amd64
                Module libgcc_s.so.1 from deb gcc-16-16-20260322-1ubuntu1.amd64
                Module libstdc++.so.6 from deb gcc-16-16-20260322-1ubuntu1.amd64
                Module libQt6Core.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libQt6Gui.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libQt6Widgets.so.6 from deb qt6-base-6.10.2+dfsg-7.amd64
                Module libQt6Svg.so.6 from deb qt6-svg-6.10.2-2.amd64
                Module libQt6SvgWidgets.so.6 from deb qt6-svg-6.10.2-2.amd64
                Module libz.so.1 from deb zlib-1:1.3.dfsg+really1.3.1-1ubuntu3.amd64
                Module libmagic.so.1 from deb file-1:5.46-5build2.amd64
                Module libhunspell-1.7.so.0 from deb hunspell-1.7.2+really1.7.2-11.amd64
                Module libenchant-2.so.2 from deb enchant-2-2.8.2+dfsg1-3build1.amd64
                Module libmythes-1.2.so.0 from deb mythes-2:1.2.5-2build1.amd64
                Stack trace of thread 23037:
                #0  0x0000712f3b8a648c __pthread_kill_implementation (libc.so.6 + 0xa648c)
                #1  0x0000712f3b845b7e __GI_raise (libc.so.6 + 0x45b7e)
                #2  0x0000712f3b8288ec __GI_abort (libc.so.6 + 0x288ec)
                #3  0x0000593a4af8ced0 n/a (/usr/bin/lyx + 0x372ed0)
                #4  0x0000593a4b365d5c _ZN3lyx5Inset6bufferEv (/usr/bin/lyx + 0x74bd5c)
                #5  0x0000593a4b2d05cb _ZN3lyx13InsetMathNest10doDispatchERNS_6CursorERNS_11FuncRequestE (/usr/bin/lyx + 0x6b65cb)
                #6  0x0000593a4b3633d2 _ZN3lyx5Inset8dispatchERNS_6CursorERNS_11FuncRequestE (/usr/bin/lyx + 0x7493d2)
                #7  0x0000593a4b054781 _ZN3lyx6Cursor8dispatchERKNS_11FuncRequestE (/usr/bin/lyx + 0x43a781)
                #8  0x0000593a4b520644 _ZN3lyx8frontend7GuiView20dispatchToBufferViewERKNS_11FuncRequestERNS_14DispatchResultE (/usr/bin/lyx + 0x906644)
                #9  0x0000593a4b528f9e _ZN3lyx8frontend7GuiView8dispatchERKNS_11FuncRequestERNS_14DispatchResultE (/usr/bin/lyx + 0x90ef9e)
                #10 0x0000593a4b4dd3e5 _ZN3lyx8frontend14GuiApplication8dispatchERKNS_11FuncRequestERNS_14DispatchResultE (/usr/bin/lyx + 0x8c33e5)
                #11 0x0000593a4b4d0e09 _ZN3lyx8frontend14GuiApplication8dispatchERKNS_11FuncRequestE (/usr/bin/lyx + 0x8b6e09)
                #12 0x0000593a4b4d505c _ZN3lyx8frontend14GuiApplication13processKeySymERKNS_9KeySymbolEj (/usr/bin/lyx + 0x8bb05c)
                #13 0x0000712f3c1ea45f n/a (libQt6Core.so.6 + 0x1ea45f)
                #14 0x0000593a4b5303eb _ZN3lyx8frontend15CompressorProxy4slotERKNS_9KeySymbolEjb (/usr/bin/lyx + 0x9163eb)
                #15 0x0000712f3c1db464 _ZN7QObject5eventEP6QEvent (libQt6Core.so.6 + 0x1db464)
                #16 0x0000712f3d1a0b7f _ZN19QApplicationPrivate13notify_helperEP7QObjectP6QEvent (libQt6Widgets.so.6 + 0x1a0b7f)
                #17 0x0000593a4b4d8ad0 _ZN3lyx8frontend14GuiApplication6notifyEP7QObjectP6QEvent (/usr/bin/lyx + 0x8bead0)
                #18 0x0000712f3c190098 _ZN16QCoreApplication15notifyInternal2EP7QObjectP6QEvent (libQt6Core.so.6 + 0x190098)
                #19 0x0000712f3c190321 _ZN23QCoreApplicationPrivate16sendPostedEventsEP7QObjectiP11QThreadData (libQt6Core.so.6 + 0x190321)
                #20 0x0000712f3c4072cf n/a (libQt6Core.so.6 + 0x4072cf)
                #21 0x0000712f3bf08b9b n/a (libglib-2.0.so.0 + 0x60b9b)
                #22 0x0000712f3bf0a1d7 n/a (libglib-2.0.so.0 + 0x621d7)
                #23 0x0000712f3bf0a3c3 g_main_context_iteration (libglib-2.0.so.0 + 0x623c3)
                #24 0x0000712f3c40513d _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x40513d)
                #25 0x0000712f3c198f5b _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x198f5b)
                #26 0x0000712f3c192c87 _ZN16QCoreApplication4execEv (libQt6Core.so.6 + 0x192c87)
                #27 0x0000593a4b0ff740 _ZN3lyx3LyX4execERiPPc (/usr/bin/lyx + 0x4e5740)
                #28 0x0000593a4af93578 main (/usr/bin/lyx + 0x379578)
                #29 0x0000712f3b82a601 __libc_start_call_main (libc.so.6 + 0x2a601)
                #30 0x0000712f3b82a718 __libc_start_main_impl (libc.so.6 + 0x2a718)
                #31 0x0000593a4afa0f15 _start (/usr/bin/lyx + 0x386f15)
                
                Stack trace of thread 25849:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 25840:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 25837:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 25847:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 25838:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 25839:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 23041:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a33a7 __pthread_cond_wait_common (libc.so.6 + 0xa33a7)
                #4  0x0000712f1929dedd n/a (libgallium-26.0.3-1ubuntu1.so + 0x69dedd)
                #5  0x0000712f192538dc n/a (libgallium-26.0.3-1ubuntu1.so + 0x6538dc)
                #6  0x0000712f1929de1c n/a (libgallium-26.0.3-1ubuntu1.so + 0x69de1c)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 23042:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a33a7 __pthread_cond_wait_common (libc.so.6 + 0xa33a7)
                #4  0x0000712f1929dedd n/a (libgallium-26.0.3-1ubuntu1.so + 0x69dedd)
                #5  0x0000712f192538dc n/a (libgallium-26.0.3-1ubuntu1.so + 0x6538dc)
                #6  0x0000712f1929de1c n/a (libgallium-26.0.3-1ubuntu1.so + 0x69de1c)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 23038:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a067c __internal_syscall_cancel (libc.so.6 + 0xa067c)
                #2  0x0000712f3b928376 __GI_ppoll (libc.so.6 + 0x128376)
                #3  0x0000712f3bf0a2f1 n/a (libglib-2.0.so.0 + 0x622f1)
                #4  0x0000712f3bf0a3c3 g_main_context_iteration (libglib-2.0.so.0 + 0x623c3)
                #5  0x0000712f3c40513d _ZN20QEventDispatcherGlib13processEventsE6QFlagsIN10QEventLoop17ProcessEventsFlagEE (libQt6Core.so.6 + 0x40513d)
                #6  0x0000712f3c198f5b _ZN10QEventLoop4execE6QFlagsINS_17ProcessEventsFlagEE (libQt6Core.so.6 + 0x198f5b)
                #7  0x0000712f3c282aae _ZN7QThread4execEv (libQt6Core.so.6 + 0x282aae)
                #8  0x0000712f3b77904d n/a (libQt6DBus.so.6 + 0x4004d)
                #9  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #10 0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #11 0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 25846:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 25848:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a05ec __internal_syscall_cancel (libc.so.6 + 0xa05ec)
                #2  0x0000712f3b8a09c7 __futex_abstimed_wait_common64 (libc.so.6 + 0xa09c7)
                #3  0x0000712f3b8a3662 __pthread_cond_wait_common (libc.so.6 + 0xa3662)
                #4  0x0000712f3c312533 _ZN14QWaitCondition4waitEP6QMutex14QDeadlineTimer (libQt6Core.so.6 + 0x312533)
                #5  0x0000712f3c27ffae n/a (libQt6Core.so.6 + 0x27ffae)
                #6  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #7  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #8  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 23040:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a067c __internal_syscall_cancel (libc.so.6 + 0xa067c)
                #2  0x0000712f3b927e4e __GI___poll (libc.so.6 + 0x127e4e)
                #3  0x0000712f38145b4a n/a (libQt6WaylandClient.so.6 + 0x89b4a)
                #4  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #5  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #6  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                
                Stack trace of thread 23039:
                #0  0x0000712f3b8acae2 __syscall_cancel_arch (libc.so.6 + 0xacae2)
                #1  0x0000712f3b8a067c __internal_syscall_cancel (libc.so.6 + 0xa067c)
                #2  0x0000712f3b927e4e __GI___poll (libc.so.6 + 0x127e4e)
                #3  0x0000712f38145b4a n/a (libQt6WaylandClient.so.6 + 0x89b4a)
                #4  0x0000712f3c3185a6 n/a (libQt6Core.so.6 + 0x3185a6)
                #5  0x0000712f3b8a40da start_thread (libc.so.6 + 0xa40da)
                #6  0x0000712f3b9377ac __clone3 (libc.so.6 + 0x1377ac)
                ELF object binary architecture: AMD x86-64
1 2 3 4 5 6 7 8 9 10 11


See also: TracQuery, TracTickets, TracReports

Last modified 4 years ago Last modified on Mar 6, 2022, 8:38:39 AM
Note: See TracWiki for help on using the wiki.