Files
xenia-rs/audit-runs/audit-004/run-50m-probe-v2.txt
MechaCat02 7108d6d131 feat(kernel): KRNBUG-AUDIT-004 — --ctor-probe PC hook + --dump-addr struct dump
Diagnostic-only, read-only. Lockstep `instructions=100000002`
preserved bit-exact at -n 100M --stable-digest. 586 → 588 tests.

Adds two read-only diagnostics for the parked-waiter producer hunt:

  * `--ctor-probe=0x8217C850,0x...` — at every interpreter step,
    if `ctx.pc` is in the configured set, print one `CTOR-PROBE`
    line capturing live r3 (= `this` in MSVC PPC ctors), lr
    (= return site), sp, plus an 8-frame back-chain with
    saved-r31/r30 per frame. Fires once per hit, exactly what the
    8-instance-pool probe needed.

  * `--dump-addr=0x828F3D08,0x828F4070,0x828F3EC0,...` — at end of
    run (after the FOCUS report in `dump_thread_diagnostic`), each
    address gets a 128-byte hex + be32 + ASCII dump. Used to
    inspect the static dispatcher / job-queue struct layouts
    AUDIT-003 identified.

Both gated default-off; empty set is a single `is_empty()` test on
the hot path. No guest state is mutated, so the
`sylpheed_n*m.json` lockstep digest is preserved.

KRNBUG-AUDIT-004 findings (corrects KRNBUG-AUDIT-002/003):

1. **The "8-instance pool" hypothesis for handle 0x1004 is FALSE.**
   Probing the inner per-instance ctors `[0x821783D8, 0x82181750,
   0x821701C8]` at -n 50M shows each fires EXACTLY ONCE with
   r3 = `[0x828F3EC0, 0x828F3D08, 0x828F4070]` respectively. All
   three handles are Meyers-style singletons with one dispatcher
   each. The "called 8 times" claim came from miscounting raw
   entries to the OUTER getter sub_8217C850 — but that getter is
   itself a Meyers-singleton-getter; only the FIRST entry cascades
   through to bl 0x821783D8 (gated on `[0x828F48D8] bit 0`).

2. **The producer indirection layer is the singleton-getter
   itself.** Static byte-scan of .rdata / .data shows 0 hits for
   the dispatcher addresses — no static registry table holds them.
   But the xrefs table for the OUTER getters reveals 5–6 callers
   each, MOSTLY non-create-chain, sharing the canonical producer
   pattern: `bl outer_singleton_getter; lwz r3, OFFSET(r3); bl
   0x824AA1D8` (with OFFSET=80 for 0x100c, =36 for 0x15e0). So the
   AUDIT-003 xref audit was necessary but not sufficient — it
   correctly saw "no direct producer references" but missed the
   singleton-getter indirection layer.

3. **Dispatcher struct layouts** (128-byte dumps captured at -n
   50M --halt-on-deadlock):
     - 0x828F3D08 (handle 0x100c): event_handle at +0x4C (0x100c),
       thread_handle at +0x48 (0x1010), self-pointer at +0x74,
       capacity 7 at +0x28, queue empty (+0/+3C = -1).
     - 0x828F4070 (handle 0x15e0): event_handle at +0x20 (0x15e0),
       sibling-handle 0x15E4 at +0x1C, queue empty (+0x10 = -1).
     - 0x828F3EC0 (handle 0x1004): event_handle at +0x78 (0x1004),
       4 guest-heap sub-buffers at +0x20/+0x3C/+0x44/+0x50 in
       0x4xxxxxxx range — noticeably different layout from the
       other two pure POD job queues.

Files:
  crates/xenia-kernel/src/state.rs   ctor_probe_pcs / dump_addrs +
                                     fire_ctor_probe_if_match + 2 tests
  crates/xenia-app/src/main.rs       Exec --ctor-probe / --dump-addr
                                     CLI parsing, prologue hook,
                                     end-of-run struct dumper
  audit-findings.md                  KRNBUG-AUDIT-004 entry
  audit-runs/audit-004/              50M probe runs (v1 outer-getter
                                     hits, v2 inner-ctor hits proving
                                     the singleton hypothesis)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-04 17:09:47 +02:00

1014 lines
203 KiB
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Finished `release` profile [optimized] target(s) in 0.21s
Running `target/release/xenia-rs exec sylpheed.iso --halt-on-deadlock --trace-handles-focus=0x1004,0x100c,0x15e0 --ctor-probe=0x821783D8,0x82181750,0x821701C8 --dump-addr=0x828F3D08,0x828F4070,0x828F3EC0 -n 50000000`
2026-05-04T15:06:06.546806Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-04T15:06:06.548469Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-04T15:06:06.548487Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-04T15:06:06.614295Z  INFO cmd_exec:load_image:load_normal_compressed: xenia_xex::loader: LZX decompressed: 3428942 -> 9568256 bytes path=sylpheed.iso bytes=3497984 bytes_in=3485696
2026-05-04T15:06:06.614693Z  INFO cmd_exec:load_image: xenia_xex::loader: image loaded bytes_in=3485696 bytes_out=9568256 ratio=2.745005875440658 elapsed_ms=66.0 path=sylpheed.iso bytes=3497984
2026-05-04T15:06:06.618913Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-04T15:06:06.619039Z  INFO cmd_exec: xenia_rs: handle audit enabled (--trace-handles) path=sylpheed.iso
2026-05-04T15:06:06.619050Z  INFO cmd_exec: xenia_rs: handle audit focus: 3 (0x0000100c, 0x000015e0, 0x00001004) path=sylpheed.iso
2026-05-04T15:06:06.619056Z  INFO cmd_exec: xenia_rs: ctor probes armed: 3 (0x821783d8, 0x82181750, 0x821701c8) path=sylpheed.iso
2026-05-04T15:06:06.619061Z  INFO cmd_exec: xenia_rs: dump addresses armed: 3 (0x828f3d08, 0x828f4070, 0x828f3ec0) path=sylpheed.iso
2026-05-04T15:06:06.619211Z  INFO cmd_exec: xenia_rs: starting execution limit=50000000 path=sylpheed.iso
2026-05-04T15:06:06.619218Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-04T15:06:06.623820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.623845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x821783d8 tid=1 hw=0 cycle=1401430 sp=0x700ffbd0 r3=0x828f3ec0 lr=0x8217c8a8
CTOR-PROBE frame=0 fp=0x700ffbd0 lr=0x8217c8a8 saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ffc40 lr=0x8280f824 saved-r31=0x82870180 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ffca0 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
2026-05-04T15:06:06.839256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x1008 path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x82181750 tid=1 hw=0 cycle=5363599 sp=0x700ff8c0 r3=0x828f3d08 lr=0x82180114
CTOR-PROBE frame=0 fp=0x700ff8c0 lr=0x82180114 saved-r31=0x00000000 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff920 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff980 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700fff00 lr=0xbcbcbcbc saved-r31=0x00000000 saved-r30=0x00000000
2026-05-04T15:06:06.839346Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.839360Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=2 handle=0x1010 hw=1 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840062Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1018 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840089Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x101c hw=1 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1020 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840209Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1024 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840312Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1028 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840384Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x102c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840690Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1030 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840811Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.840819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1040 hw=1 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.841090Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1030) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.841906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1048 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.841955Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x104c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.842032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1050 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.842049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1054 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.842063Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1058 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.842194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615" err=File not found: cache:/d4ea4615 handle=0x105c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.842214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615/e" err=File not found: cache:/d4ea4615/e handle=0x1060 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.842226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/d4ea4615e46ee8ca.tmp" err=File not found: cache:/d4ea4615e46ee8ca.tmp handle=0x1064 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.845958Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="dat/files.tbl" err=File not found: dat/files.tbl handle=0x1068 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.848060Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x1074 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.848324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.848878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x107c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.848914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1080 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.849064Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1084 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.849094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1088 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.849126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x108c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.849271Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1090 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.849282Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/e" err=File not found: cache:/69d8e45c/e handle=0x1094 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.849292Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45ce534ffea.tmp" err=File not found: cache:/69d8e45ce534ffea.tmp handle=0x1098 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.850468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x10a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.850764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.851125Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.851134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x10b8 hw=1 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.851792Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10bc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.851842Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x10c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.852095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x10c4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.852134Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x10c8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.852178Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x10cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.852430Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x10d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.852443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x10d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.852456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c9355f2f8.tmp" err=File not found: cache:/69d8e45c9355f2f8.tmp handle=0x10d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.857010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.857179Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:06.857177Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0accb000 size_bytes=4096 size_dwords=1024
2026-05-04T15:06:06.857203Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-04T15:06:06.857192Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10e8 hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.758669Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b0d7000 width=1280 height=720
2026-05-04T15:06:07.778218Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.778236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10f4 hw=1 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.779502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.780370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1108 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.780424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x110c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.780771Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1110 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.780814Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1114 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.780864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1118 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.781133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x111c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.781152Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/a" err=File not found: cache:/aab216c3/a handle=0x1120 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.781164Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3a2c8c185.tmp" err=File not found: cache:/aab216c3a2c8c185.tmp handle=0x1124 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.952257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x112c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.952611Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x112c) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.955682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1134 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.955723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1138 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.955956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x113c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.955984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1140 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.956019Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1144 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.956161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x1148 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.956173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x114c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.956190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c939a9dcc.tmp" err=File not found: cache:/69d8e45c939a9dcc.tmp handle=0x1150 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.966420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1158 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.966765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.967635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1168 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.967691Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x116c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.968132Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1170 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.968173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1174 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.968226Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1178 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.968471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x117c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.968484Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/9" err=File not found: cache:/69d8e45c/9 handle=0x1180 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:07.968497Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c973a5c0a.tmp" err=File not found: cache:/69d8e45c973a5c0a.tmp handle=0x1184 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.005005Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.005035Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x1188 hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.005058Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.005063Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x118c hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.005342Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b8ef000 driver=0x41550000 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.057748Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.057971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.058147Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.058318Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.058489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.058662Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.058832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.059001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.059173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.059352Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.059522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.059718Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.059895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.060084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.060257Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.060508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.060712Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.060906Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.061083Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.061254Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.061423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.061590Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.061770Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.061939Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.062120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.062288Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.062454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.062622Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.062793Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.062969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.063139Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.063320Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.063489Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.063663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.063833Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.064006Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.064175Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.064343Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.064511Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.064682Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.064855Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.065024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.065192Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.065359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.065528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.065706Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.065878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.066046Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.066218Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.066392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.066562Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.066735Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.066905Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.067073Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.067242Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.067410Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.067579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.067753Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.067922Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.068093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.068261Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.068435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.068604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.068777Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.068947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.069116Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.069286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.069454Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.069594Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1158) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.071508Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.071518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x12ac hw=1 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.071924Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.071933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x12b8 hw=1 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.073470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x10a0) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.074344Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.074394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x12d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.074896Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x12d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.074938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x12dc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.074999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x12e0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.075274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3" err=File not found: cache:/aab216c3 handle=0x12e4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.075288Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c3/5" err=File not found: cache:/aab216c3/5 handle=0x12e8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.075302Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/aab216c35ee70e0a.tmp" err=File not found: cache:/aab216c35ee70e0a.tmp handle=0x12ec path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.076118Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.076126Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x12f0 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.076227Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.076234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12f8 hw=1 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.076271Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=14 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.076277Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12fc hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.080725Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x1304 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.082446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x1310 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.082744Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x1310) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1318 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083322Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x131c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1320 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1324 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083721Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1328 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083866Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c" err=File not found: cache:/69d8e45c handle=0x132c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45c/c" err=File not found: cache:/69d8e45c/c handle=0x1330 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.083894Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/69d8e45cc295ead8.tmp" err=File not found: cache:/69d8e45cc295ead8.tmp handle=0x1334 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.084480Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.085160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.089905Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x1344 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.098234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x1348 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.102420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.102694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.102952Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.103216Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.103501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.103762Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.104015Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.104299Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.104536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.104778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.105012Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.105253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.105544Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.110208Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.114531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.114703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.114870Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.115036Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.115202Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.115368Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.115536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.115704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.115867Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.116032Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.116197Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.116362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.116527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.116695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.116861Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.117028Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.117189Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.117363Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.117531Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.117730Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.117931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.118114Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.118289Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.118458Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.118633Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.118822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.119014Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.119187Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.119355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.119535Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.119724Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.119928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.120108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.120273Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.120453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.120620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.120789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.120957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.121122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.121287Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.121451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.121616Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.121786Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.121953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.122117Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.122340Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.122504Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.122671Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.122838Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.123037Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x1304) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.126420Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.128503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x1484 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.128541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1488 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.128908Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x148c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.128938Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1490 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.128979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1494 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.129128Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1498 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.129140Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x149c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.129150Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cdba806e.tmp" err=File not found: cache:/87719002cdba806e.tmp handle=0x14a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.129567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.130051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.132219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x14ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.134820Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.141413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14b8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.141451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x14bc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.141851Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x14c0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.141880Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x14c4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.141925Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x14c8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.142077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x14cc path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.142089Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x14d0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.142100Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cec0a96e.tmp" err=File not found: cache:/87719002cec0a96e.tmp handle=0x14d4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.142483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.146202Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.146379Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.146549Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.146728Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.146899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.147070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.147239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.147407Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.147583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.147761Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.147953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.148127Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.148298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.148470Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.148641Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.148823Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.148995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.149168Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.149338Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.149498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.222362Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x152c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.222424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1530 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.222858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1534 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.222887Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1538 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.222933Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x153c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.223081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1540 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.223092Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x1544 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.223103Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a60fcb85.tmp" err=File not found: cache:/87719002a60fcb85.tmp handle=0x1548 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.223603Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225227Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x1550 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225262Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x1554 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225722Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1558 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225750Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x155c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1560 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225943Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1564 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/2" err=File not found: cache:/87719002/2 handle=0x1568 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.225964Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002285d8849.tmp" err=File not found: cache:/87719002285d8849.tmp handle=0x156c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.226404Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.230736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.230917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.231094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.231329Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.231522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.231697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.231869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.232043Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.232214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.232367Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.273398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x159c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.273456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15a0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.273962Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x15a4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.273993Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x15a8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.274042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x15ac path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.274190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x15b0 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.274201Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/a" err=File not found: cache:/87719002/a handle=0x15b4 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.274212Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002a715f485.tmp" err=File not found: cache:/87719002a715f485.tmp handle=0x15b8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.274737Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(11) is_main=false cycle=18574608 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.274973Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.275018Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.275024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x15c8 hw=1 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.281066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x15d8 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.281143Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x15dc path=sylpheed.iso max=Some(50000000) ips=None
CTOR-PROBE pc=0x821701c8 tid=1 hw=0 cycle=9203618 sp=0x700ff5c0 r3=0x828f4070 lr=0x8216f65c
CTOR-PROBE frame=0 fp=0x700ff5c0 lr=0x8216f65c saved-r31=0x40929b60 saved-r30=0x00000000
CTOR-PROBE frame=1 fp=0x700ff630 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000
CTOR-PROBE frame=2 fp=0x700ff6a0 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000
CTOR-PROBE frame=3 fp=0x700ff720 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
CTOR-PROBE frame=4 fp=0x700ff7d0 lr=0x821744cc saved-r31=0x700ff7d0 saved-r30=0x00000000
CTOR-PROBE frame=5 fp=0x700ff880 lr=0x822f1d5c saved-r31=0x700ff880 saved-r30=0x00000000
CTOR-PROBE frame=6 fp=0x700ff980 lr=0x8216ee14 saved-r31=0x700ff980 saved-r30=0x00000000
CTOR-PROBE frame=7 fp=0x700ffd10 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
2026-05-04T15:06:08.282365Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282374Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x15e4 hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282643Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282651Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x15f4 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282757Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1600 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282814Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282822Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1608 hw=1 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282904Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x160c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.282969Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1610 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.283108Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1614 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.283555Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x1618 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.283572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/c" err=File not found: cache:/87719002/c handle=0x161c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:08.283588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002cf2a8ccd.tmp" err=File not found: cache:/87719002cf2a8ccd.tmp handle=0x1620 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.185058Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b0d7000 width=1280 height=720
2026-05-04T15:06:09.185274Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x1344) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.190070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1628 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.190169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/" err=File not found: cache:/ handle=0x162c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.192137Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/access" err=File not found: cache:/access handle=0x1630 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.192214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/ignore" err=File not found: cache:/ignore handle=0x1634 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.192376Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/recent" err=File not found: cache:/recent handle=0x1638 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.192911Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002" err=File not found: cache:/87719002 handle=0x163c path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.192929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/87719002/0" err=File not found: cache:/87719002/0 handle=0x1640 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.192947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="cache:/8771900201a2db9c.tmp" err=File not found: cache:/8771900201a2db9c.tmp handle=0x1644 path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.194483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.203070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.203539Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.204001Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.204412Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.204824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.205229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.205634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.206039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.206439Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.206845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.207247Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.207647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.208055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.208456Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.208860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.209259Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.209666Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.210066Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.210466Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.210868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.211267Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.211747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.212155Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.212557Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.212961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.213366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.213784Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.214234Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.214775Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.215200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.215606Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.216017Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.216418Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.216826Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.217230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.217632Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.218042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.218448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.218858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.219263Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.219674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.220104Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.220514Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.220924Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.221327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.221734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.222148Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.222588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.223086Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.226188Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.234677Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.235084Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.235491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.235902Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.236364Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.236801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.237230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.237664Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.238091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.238659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.239303Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.239968Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.240385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.240801Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.241214Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.241623Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.242031Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.242434Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.242845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.243276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.243683Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.244089Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.244491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.244901Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.245301Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.245709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.246117Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.246520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.246942Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.247382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.247881Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.248286Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.248694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.249098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.249507Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.249919Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.250327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.250736Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.251141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.251541Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.251953Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.252358Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.252766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.253276Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.253947Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.254620Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.255314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.255765Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.256169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.256575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.257045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.257451Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.257862Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.258272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.258680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.259085Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.259486Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.259899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.260306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.260780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.261206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.261615Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.262024Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.262425Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.262831Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.263236Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.263643Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.264055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.264460Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.264869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.265275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.265680Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.266087Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.266492Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.266901Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.267448Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.268093Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.268520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.268931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.269375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.269794Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.270227Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.270634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.271039Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.271446Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.271858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.272259Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.272684Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.273112Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.273516Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.273929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.274332Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.274738Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.275141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.275549Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.275957Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.276361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.276766Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.277171Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.277573Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.277979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.278382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.278790Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.279190Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.279592Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.279999Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.280453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.280930Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x1348) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:09.285160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x14ac) path=sylpheed.iso max=Some(50000000) ips=None
2026-05-04T15:06:10.372949Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=50000000 path=sylpheed.iso max=Some(50000000) ips=None
=== Final State ===
PC: 0x825f0fd8
LR: 0x824ac578
CTR: 0x823e9d90
CR: 0x24000024
XER: CA=0 OV=0 SO=0
r0 : 0x0000000082153bd8
r1 : 0x00000000700ff880
r2 : 0x0000000020000000
r4 : 0x0000000000000001
r7 : 0x0000000040111a50
r11: 0x0000000000000127
r12: 0x00000000822f1e00
r13: 0x000000007fff0000
r18: 0x0000000040d09a7c
r19: 0x0000000000000001
r21: 0xffffffffffffffff
r22: 0x0000000040542740
r23: 0x00000000828f3844
r24: 0x0000000000000055
r25: 0x00000000828e0000
r26: 0x00000000828f3888
r27: 0x0000000000000055
r31: 0x00000000000010ec
2026-05-04T15:06:10.374828Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
=== Thread diagnostics ===
hw=0 idx=0 tid=1 state=Ready pc=0x825f0fd8 lr=0x824ac578 sp=0x700ff880
r0=0x82153bd8 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x40111a50
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000127 r12=0x822f1e00 r13=0x7fff0000
hw=0 idx=1 tid=12 state=Ready pc=0x824ac578 lr=0x824ac578 sp=0x714a7970
r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000007 r10=0x40542100 r11=0x00000001 r12=0x822dfc38 r13=0x4d0d3000
hw=0 idx=2 tid=17 state=Ready pc=0x823dde30 lr=0xbcbcbcbc sp=0x7152bf00
r0=0x00000000 r3=0x828f3c4c r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a4000
hw=1 idx=0 tid=11 state=Exited(0) pc=0xbcbcbcbc lr=0xbcbcbcbc sp=0x71497f00
r0=0x821511a0 r3=0x00000000 r4=0x4024b1a0 r5=0x402118c0 r6=0x03a72328 r7=0x03a723d0
r8=0x43b7732c r9=0x828f0000 r10=0x00000001 r11=0x828f0000 r12=0xbcbcbcbc r13=0x4d0d1000
hw=1 idx=1 tid=13 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x714d7e00
r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d5000
hw=1 idx=2 tid=15 state=Ready pc=0x825f1080 lr=0x824ab1d4 sp=0x7150bc90
r0=0x821511a0 r3=0x7150bce8 r4=0x7150be68 r5=0x00000008 r6=0x00000000 r7=0x00000001
r8=0x00000000 r9=0x7150bde8 r10=0x820b0000 r11=0x00000000 r12=0x824564e4 r13=0x4e0a0000
hw=1 idx=3 tid=19 state=Ready pc=0x823ddb50 lr=0xbcbcbcbc sp=0x7172bf00
r0=0x00000000 r3=0x828f3c88 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4e0a8000
hw=2 idx=0 tid=6 state=Blocked(WaitAny { handles: [1111821148], deadline: Some(42946672) }) pc=0x824cd4f4 lr=0x824cd4f4 sp=0x71087e60
r0=0x00000000 r3=0x00000000 r4=0x00000003 r5=0x00000001 r6=0x00000000 r7=0x71087eb0
r8=0x00000000 r9=0x00000000 r10=0x00000002 r11=0x00000002 r12=0xbcbcbcbc r13=0x4b0d5000
hw=2 idx=1 tid=7 state=Ready pc=0x824bf49c lr=0x824bf494 sp=0x71187ae0
r0=0x00000000 r3=0x00000001 r4=0x4244df00 r5=0x00000003 r6=0x00000000 r7=0x0000800e
r8=0x00000000 r9=0x00000001 r10=0x00000001 r11=0x00000000 r12=0x824bf494 r13=0x4b809000
hw=3 idx=0 tid=3 state=Blocked(WaitAny { handles: [4116], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7102fb80
r0=0x821511a0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a723d0
r8=0x43b7732c r9=0x828f0000 r10=0x00000008 r11=0x00000000 r12=0x8245a660 r13=0x4acc5000
hw=3 idx=1 tid=4 state=Blocked(WaitAny { handles: [4152, 4156], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7106fc90
r0=0x821511d0 r3=0x00000000 r4=0x7106fcf0 r5=0x00000001 r6=0x00000001 r7=0x00000000
r8=0x7106fce0 r9=0x43b77334 r10=0x00000002 r11=0x00000020 r12=0x82450b48 r13=0x4acc7000
hw=3 idx=2 tid=14 state=Blocked(WaitAny { handles: [4852], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71507e00
r0=0x00000000 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x822c6898 r13=0x4d0d7000
hw=3 idx=3 tid=18 state=Blocked(WaitAny { handles: [5624, 16777216], deadline: None }) pc=0x824ab214 lr=0x824ab214 sp=0x7162bce0
r0=0x00000000 r3=0x00000000 r4=0x7162bd40 r5=0x00000001 r6=0x00000001 r7=0x00000000
r8=0x00000000 r9=0x00000013 r10=0x00000002 r11=0x00000020 r12=0x823ddbe4 r13=0x4e0a6000
hw=4 idx=0 tid=8 state=Blocked(Suspended) pc=0x824d2878 lr=0xbcbcbcbc sp=0x71287f00
r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8eb000
hw=4 idx=1 tid=16 state=Blocked(WaitAny { handles: [5600], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0
r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10
r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x8217057c r13=0x4e0a2000
hw=5 idx=0 tid=2 state=Blocked(WaitAny { handles: [4108], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0
r0=0x82153bf0 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x00000a10
r8=0x00000010 r9=0x00000000 r10=0x00009030 r11=0x00000000 r12=0x82181988 r13=0x4acc3000
hw=5 idx=1 tid=5 state=Blocked(WaitAny { handles: [4272, 4276], deadline: Some(42948072) }) pc=0x824ab214 lr=0x824ab214 sp=0x7107fc60
r0=0x821511a0 r3=0x00000000 r4=0x7107fcc0 r5=0x00000001 r6=0x00000001 r7=0x00000000
r8=0x7107fcb0 r9=0x00009030 r10=0x00000002 r11=0x00000020 r12=0x82458d68 r13=0x4acc9000
hw=5 idx=2 tid=9 state=Blocked(Suspended) pc=0x824d2940 lr=0xbcbcbcbc sp=0x71387f00
r0=0x00000000 r3=0x00000000 r4=0x00000000 r5=0x00000000 r6=0x00000000 r7=0x00000000
r8=0x00000000 r9=0x00000000 r10=0x00000000 r11=0x00000000 r12=0x00000000 r13=0x4b8ed000
hw=5 idx=3 tid=10 state=Blocked(WaitAny { handles: [4100], deadline: None }) pc=0x824ac578 lr=0x824ac578 sp=0x71397d90
r0=0x82153c08 r3=0x00000000 r4=0x00000001 r5=0x00000000 r6=0x00000000 r7=0x03a72328
r8=0x43b7728c r9=0x43b77328 r10=0x40541e00 r11=0x820b5714 r12=0x821789c8 r13=0x4d0cf000
-- Handle waiter lists --
handle=0x000012f4 Semaphore(0/2147483647) waiters(tid)=[14, 13]
handle=0x42450b5c Event(sig=false, mr=true) waiters(tid)=[6]
handle=0x000015f8 Event(sig=false, mr=false) waiters(tid)=[18]
handle=0x00001004 Event(sig=false, mr=true) waiters(tid)=[10]
handle=0x000010b4 Semaphore(0/2147483647) waiters(tid)=[5]
handle=0x0000100c Event(sig=false, mr=true) waiters(tid)=[2]
handle=0x00001014 Semaphore(0/2147483647) waiters(tid)=[3]
handle=0x000010b0 Event(sig=false, mr=false) waiters(tid)=[5]
handle=0x000015e0 Event(sig=false, mr=true) waiters(tid)=[16]
handle=0x00001038 Event(sig=false, mr=false) waiters(tid)=[4]
handle=0x0000103c Semaphore(0/2147483647) waiters(tid)=[4]
=== Handle audit trails ===
handle=0x00001004 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=10 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x0000100c kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=2 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x00001014 kind=Semaphore waiters=1 signals=15 waits=16 wakes=15 <SUSPECT>
created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore
waits (16):
[ 0] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
[ 1] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
[ 2] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
[ 3] cycle=0 tid=3 lr=0x824ac578 src=do_wait_single aux=0x0
... (12 more)
signals (15):
[ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
... (11 more)
wakes (15):
[ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
[ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
[ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
[ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
... (11 more)
handle=0x00001038 kind=Event/Auto waiters=1 signals=0 waits=32 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (32):
[ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
handle=0x0000103c kind=Semaphore waiters=1 signals=32 waits=32 wakes=12
created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore
waits (32):
[ 0] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=4 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
signals (32):
[ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
[ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
[ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
[ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0xc
... (28 more)
wakes (12):
[ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 2] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 3] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
... (8 more)
handle=0x000010b0 kind=Event/Auto waiters=1 signals=0 waits=9 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent
waits (9):
[ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (5 more)
handle=0x000010b4 kind=Semaphore waiters=1 signals=8 waits=9 wakes=5
created cycle=0 tid=4 lr=0x824ab110 src=NtCreateSemaphore
waits (9):
[ 0] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=5 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (5 more)
signals (8):
[ 0] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 1] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 2] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 3] cycle=0 tid=4 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
... (4 more)
wakes (5):
[ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 1] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 2] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 3] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
... (1 more)
handle=0x000010dc kind=Semaphore waiters=0 signals=2 waits=3 wakes=2 <SUSPECT>
created cycle=0 tid=1 lr=0x824ab110 src=NtCreateSemaphore
waits (3):
[ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
signals (2):
[ 0] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
[ 1] cycle=0 tid=1 lr=0x824ab168 src=NtReleaseSemaphore aux=0x0
wakes (2):
[ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
[ 1] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
handle=0x000010f0 kind=Event/Manual waiters=0 signals=1 waits=3 wakes=1 <SUSPECT>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (3):
[ 0] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=7 lr=0x824ab214 src=do_wait_multiple aux=0x4
signals (1):
[ 0] cycle=0 tid=1 lr=0x824aa304 src=NtSetEvent aux=0x0
wakes (1):
[ 0] cycle=0 tid=1 lr=0x00000000 src=wake_eligible_waiters/manual aux=0x0
handle=0x000010fc kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 <SUSPECT>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=1 lr=0x824ac578 src=do_wait_single aux=0x0
signals (1):
[ 0] cycle=0 tid=4 lr=0x824aa304 src=NtSetEvent aux=0x0
wakes (1):
[ 0] cycle=0 tid=4 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
handle=0x00001104 kind=Event/Auto waiters=0 signals=1 waits=1 wakes=1 <SUSPECT>
created cycle=0 tid=4 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=4 lr=0x824ac578 src=do_wait_single aux=0x0
signals (1):
[ 0] cycle=0 tid=5 lr=0x824aa304 src=NtSetEvent aux=0x0
wakes (1):
[ 0] cycle=0 tid=5 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x0
handle=0x000012f4 kind=Semaphore waiters=2 signals=0 waits=2 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=12 lr=0x824ab110 src=NtCreateSemaphore
waits (2):
[ 0] cycle=0 tid=14 lr=0x824ac578 src=do_wait_single aux=0x0
[ 1] cycle=0 tid=13 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x000015bc kind=Timer/Auto waiters=0 signals=0 waits=32 wakes=1 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x82612744 src=NtCreateTimer
waits (32):
[ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
wakes (1):
[ 0] cycle=9168371 tid=1 lr=0x00000000 src=wake_eligible_waiters/auto aux=0x1
handle=0x000015c0 kind=Event/Auto waiters=0 signals=0 waits=32 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (32):
[ 0] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 1] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 2] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
[ 3] cycle=0 tid=15 lr=0x824ab214 src=do_wait_multiple aux=0x4
... (28 more)
handle=0x000015e0 kind=Event/Manual waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=16 lr=0x824ac578 src=do_wait_single aux=0x0
handle=0x000015f8 kind=Event/Auto waiters=1 signals=0 waits=1 wakes=0 <NO_SIGNALS_DESPITE_WAITS>
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
waits (1):
[ 0] cycle=0 tid=18 lr=0x824ab214 src=do_wait_multiple aux=0x4
=== Handle audit (focus) ===
handle=0x00001004 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
created stack (6 frames):
[ 0] fp=0x700ffab0 lr=0x824a9f6c
[ 1] fp=0x700ffb40 lr=0x821784f8
[ 2] fp=0x700ffbd0 lr=0x8217c8a8
[ 3] fp=0x700ffc40 lr=0x8280f824
[ 4] fp=0x700ffca0 lr=0x824acbf0
[ 5] fp=0x700ffd10 lr=0x824ab7a8
created-class probes (6):
frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ffb00
frame=1 lr=0x821784f8 saved-r31=0x700ffb40 saved-r30=0x00000000
frame=2 lr=0x8217c8a8 saved-r31=0x700ffbd0 saved-r30=0x00000000
frame=3 lr=0x8280f824 saved-r31=0x82870180 saved-r30=0x00000000
frame=4 lr=0x824acbf0 saved-r31=0x82870180 saved-r30=0x00000000
frame=5 lr=0x824ab7a8 saved-r31=0x700ffd10 saved-r30=0x00000000
timeline (last 16 of 1):
cycle=0 tid=10 lr=0x824ac578 src=do_wait_single[wait] aux=0x0
-- DIAGNOSIS --
GuestExport=0 KernelInternal=0 waits=1
=> producer is a missing kernel signal source (or BST-paradox upstream)
WAIT-THREAD tid=10 pc=0x824ac578 lr=0x824ac578 sp=0x71397d90 r3=0x00000000 r30=0x00000000 r31=0x00001004
FRAME 0 fp=0x71397d90 lr=0x824ac578 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 1 fp=0x71397e10 lr=0x821789c8 saved r31=0x71397e10 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 2 fp=0x71397f00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
handle=0x0000100c kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
created stack (6 frames):
[ 0] fp=0x700ff7c0 lr=0x824a9f6c
[ 1] fp=0x700ff850 lr=0x821817c0
[ 2] fp=0x700ff8c0 lr=0x82180114
[ 3] fp=0x700ff920 lr=0x82181c58
[ 4] fp=0x700ff980 lr=0x8216eaa4
[ 5] fp=0x700ffd10 lr=0x824ab8e0
created-class probes (6):
frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff810
frame=1 lr=0x821817c0 saved-r31=0x828f3d08 saved-r30=0x00000000
frame=2 lr=0x82180114 saved-r31=0x828f3d08 saved-r30=0x00000000
frame=3 lr=0x82181c58 saved-r31=0x700ff980 saved-r30=0x00000000
frame=4 lr=0x8216eaa4 saved-r31=0x700ff980 saved-r30=0x00000000
frame=5 lr=0x824ab8e0 saved-r31=0x700ffd10 saved-r30=0x00000000
timeline (last 16 of 1):
cycle=0 tid=2 lr=0x824ac578 src=do_wait_single[wait] aux=0x0
-- DIAGNOSIS --
GuestExport=0 KernelInternal=0 waits=1
=> producer is a missing kernel signal source (or BST-paradox upstream)
WAIT-THREAD tid=2 pc=0x824ac578 lr=0x824ac578 sp=0x7101fdf0 r3=0x00000000 r30=0x00000000 r31=0x0000100c
FRAME 0 fp=0x7101fdf0 lr=0x824ac578 saved r31=0x828f3d34 r30=0x00000000 r29=0x828f3d08 r28=0x00000000
FRAME 1 fp=0x7101fe70 lr=0x82181988 saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 2 fp=0x7101ff00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
handle=0x000015e0 kind=Event/Manual waiters=1 signaled=false signal_attempts=0 (primary=0, ghost=0) waits=1 wakes=0
created cycle=0 tid=1 lr=0x824a9f6c src=NtCreateEvent
created stack (6 frames):
[ 0] fp=0x700ff4c0 lr=0x824a9f6c
[ 1] fp=0x700ff550 lr=0x82170210
[ 2] fp=0x700ff5c0 lr=0x8216f65c
[ 3] fp=0x700ff630 lr=0x821707f8
[ 4] fp=0x700ff6a0 lr=0x821c5418
[ 5] fp=0x700ff720 lr=0x82172d8c
created-class probes (6):
frame=0 lr=0x824a9f6c live r31=0x00000000 r30=0x00000000 r3=0x700ff510
frame=1 lr=0x82170210 saved-r31=0x700ff550 saved-r30=0x00000000
frame=2 lr=0x8216f65c saved-r31=0x700ff5c0 saved-r30=0x00000000
frame=3 lr=0x821707f8 saved-r31=0x700ff630 saved-r30=0x00000000
frame=4 lr=0x821c5418 saved-r31=0x700ff6a0 saved-r30=0x00000000
frame=5 lr=0x82172d8c saved-r31=0x700ff720 saved-r30=0x00000000
timeline (last 16 of 1):
cycle=0 tid=16 lr=0x824ac578 src=do_wait_single[wait] aux=0x0
-- DIAGNOSIS --
GuestExport=0 KernelInternal=0 waits=1
=> producer is a missing kernel signal source (or BST-paradox upstream)
WAIT-THREAD tid=16 pc=0x824ac578 lr=0x824ac578 sp=0x7151bdf0 r3=0x00000000 r30=0x00000000 r31=0x000015e0
FRAME 0 fp=0x7151bdf0 lr=0x824ac578 saved r31=0x828f4070 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 1 fp=0x7151be70 lr=0x8217057c saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
FRAME 2 fp=0x7151bf00 lr=0xbcbcbcbc saved r31=0x00000000 r30=0x00000000 r29=0x00000000 r28=0x00000000
=== Dump-addr ===
addr=0x828f3d08
+0x00: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................
+0x10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x20: 00 00 00 00 00 00 00 00 00 00 00 07 01 00 00 00 | be32=00000000 00000000 00000007 01000000 | ................
+0x30: 00 00 00 00 00 00 00 00 00 00 00 00 ff ff ff ff | be32=00000000 00000000 00000000 ffffffff | ................
+0x40: 00 00 00 00 00 00 00 00 00 00 10 10 00 00 10 0c | be32=00000000 00000000 00001010 0000100c | ................
+0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x70: 00 00 00 01 82 8f 3d 08 00 00 00 00 00 00 00 00 | be32=00000001 828f3d08 00000000 00000000 | ......=.........
addr=0x828f4070
+0x00: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=01000000 00000000 00000000 00000000 | ................
+0x10: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 15 e4 | be32=ffffffff 00000000 00000000 000015e4 | ................
+0x20: 00 00 15 e0 00 00 00 00 00 00 00 00 00 00 00 00 | be32=000015e0 00000000 00000000 00000000 | ................
+0x30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 08 | be32=00000000 00000000 00000000 00000008 | ................
+0x40: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................
+0x50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x60: 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000001 00000000 00000000 00000000 | ................
+0x70: 00 00 00 01 00 00 00 00 00 00 00 00 ff ff 00 00 | be32=00000001 00000000 00000000 ffff0000 | ................
addr=0x828f3ec0
+0x00: 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=01000000 00000000 00000000 00000000 | ................
+0x10: ff ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00 | be32=ffffffff 00000000 00000000 00000000 | ................
+0x20: 40 54 1b c0 00 00 00 00 00 00 00 00 00 00 00 00 | be32=40541bc0 00000000 00000000 00000000 | @T..............
+0x30: 00 00 00 14 00 00 00 2f 41 4f 5f 60 40 21 1c a0 | be32=00000014 0000002f 414f5f60 40211ca0 | ......./AO_`@!..
+0x40: 00 00 00 00 40 54 18 c0 00 00 00 00 00 00 00 00 | be32=00000000 405418c0 00000000 00000000 | ....@T..........
+0x50: 40 11 18 40 00 00 00 00 ff ff ff ff ff ff ff ff | be32=40111840 00000000 ffffffff ffffffff | @..@............
+0x60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 | be32=00000000 00000000 00000000 00000000 | ................
+0x70: 00 00 00 00 00 00 12 ac 00 00 10 04 00 00 00 00 | be32=00000000 000012ac 00001004 00000000 | ................
2026-05-04T15:06:10.375520Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=3828 instructions=50000008 import_calls=407415 unimplemented=0 path=sylpheed.iso
2026-05-04T15:06:10.383685Z  INFO xenia_rs::observability: metrics summary:
histogram xex.load_image_ms = count=1 sum=66.000 min=66.000 max=66.000 mean=66.000
counter xex.bytes_in = 3485696
counter xex.bytes_out = 9568256
counter kernel.calls{name=RtlImageXexHeaderField} = 2
counter kernel.calls{name=NtAllocateVirtualMemory} = 2
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 79315
counter kernel.calls{name=RtlLeaveCriticalSection} = 79315
counter kernel.calls{name=XexCheckExecutablePrivilege} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 1
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 394
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 88
counter kernel.calls{name=NtReadFile} = 346
counter kernel.calls{name=NtClose} = 544
counter kernel.calls{name=RtlNtStatusToDosError} = 35
counter kernel.calls{name=ExCreateThread} = 18
counter scheduler.spawn.ok = 18
counter kernel.calls{name=ObReferenceObjectByHandle} = 15
counter kernel.calls{name=KeSetAffinityThread} = 12
counter kernel.calls{name=ObDereferenceObject} = 17
counter kernel.calls{name=XamContentCreateEnumerator} = 1
counter kernel.calls{name=XamEnumerate} = 1
counter kernel.calls{name=NtWaitForSingleObjectEx} = 94889
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=RtlInitAnsiString} = 167
counter kernel.calls{name=NtOpenFile} = 49
counter kernel.calls{name=NtQueryVolumeInformationFile} = 16
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryInformationFile} = 380
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 55701
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtSetInformationFile} = 77
counter kernel.calls{name=NtWriteFile} = 43
counter kernel.calls{name=NtSetEvent} = 334
counter kernel.calls{name=MmFreePhysicalMemory} = 12
counter kernel.calls{name=XamNotifyCreateListener} = 1
counter kernel.calls{name=VdInitializeEngines} = 2
counter kernel.calls{name=VdShutdownEngines} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 2
counter kernel.calls{name=VdSetGraphicsInterruptCallback} = 1
counter kernel.calls{name=ExGetXConfigSetting} = 3
counter kernel.calls{name=VdSetSystemCommandBufferGpuIdentifierAddress} = 2
counter kernel.calls{name=MmGetPhysicalAddress} = 1
counter kernel.calls{name=VdInitializeRingBuffer} = 1
counter kernel.calls{name=VdEnableRingBufferRPtrWriteBack} = 1
counter kernel.calls{name=KiApcNormalRoutineNop} = 1
counter kernel.calls{name=KeSetBasePriorityThread} = 3
counter kernel.calls{name=KeWaitForSingleObject} = 1
counter kernel.calls{name=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=KeEnterCriticalRegion} = 3
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 3
counter kernel.calls{name=KeLeaveCriticalRegion} = 3
counter kernel.calls{name=VdIsHSIOTrainingSucceeded} = 1
counter kernel.calls{name=VdGetSystemCommandBuffer} = 2
counter kernel.calls{name=VdSwap} = 2
counter gpu.interrupt.delivered{source=1} = 2
counter kernel.calls{name=KeAcquireSpinLockAtRaisedIrql} = 28
counter kernel.calls{name=KeReleaseSpinLockFromRaisedIrql} = 28
counter kernel.calls{name=VdGetCurrentDisplayGamma} = 1
counter gpu.interrupt.delivered{source=0} = 295
counter kernel.calls{name=VdSetDisplayMode} = 1
counter kernel.calls{name=VdGetCurrentDisplayInformation} = 1
counter kernel.calls{name=RtlFillMemoryUlong} = 1
counter kernel.calls{name=VdInitializeScalerCommandBuffer} = 1
counter kernel.calls{name=VdPersistDisplay} = 1
counter kernel.calls{name=NtResumeThread} = 6
counter kernel.calls{name=XGetGameRegion} = 2
counter kernel.calls{name=KeInitializeSemaphore} = 1
counter kernel.calls{name=KeResumeThread} = 2
counter kernel.calls{name=KeRaiseIrqlToDpcLevel} = 33
counter kernel.calls{name=KfLowerIrql} = 26
counter kernel.calls{name=XAudioRegisterRenderDriverClient} = 1
counter kernel.calls{name=ObLookupThreadByThreadId} = 2
counter kernel.calls{name=ObOpenObjectByPointer} = 2
counter kernel.calls{name=XNotifyPositionUI} = 1
counter kernel.calls{name=NtCreateTimer} = 1
counter kernel.calls{name=NtSetTimerEx} = 1
counter kernel.calls{name=XamInputGetCapabilities} = 8
counter kernel.calls{name=XNotifyGetNext} = 94828
counter kernel.calls{name=XamUserGetSigninState} = 4
counter kernel.calls{name=XamUserGetXUID} = 1