chore: track audit-runs summary artifacts (md/csv/diff/txt/json/etc)

Snapshot of every non-log artifact under audit-runs/ from audits 003
through 058: findings.md per audit, comparison CSVs, probe diffs,
schema docs, register-dump txts, lr-trace JSONL streams, the saved
canary patch diffs, etc. ~284 files / ~52 MB total.

Excluded (per .gitignore): probe stdout/stderr/log streams (the raw
firehose), guest-memory dumps under audit-026/027/029 (4.5 GB of
.bin files; *.bin pattern added to .gitignore this commit).

Also adds the orphan audit-058-sub825070F0-activation directory that
a subagent accidentally created at project-root instead of
under xenia-rs/audit-runs/; relocated to its proper home.

Purpose: cross-machine continuity. With these summaries committed,
a fresh clone gives the next session the full per-audit context
(findings + tables + cascade predictions) without dependence on
local-only working tree.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
MechaCat02
2026-05-10 21:36:41 +02:00
parent 609f586ed8
commit 8e709b0a24
284 changed files with 677656 additions and 0 deletions

View File

@@ -0,0 +1,76 @@
diff --git a/src/xenia/cpu/backend/x64/x64_emitter.cc b/src/xenia/cpu/backend/x64/x64_emitter.cc
index 5da8f6adc..25181b36d 100644
--- a/src/xenia/cpu/backend/x64/x64_emitter.cc
+++ b/src/xenia/cpu/backend/x64/x64_emitter.cc
@@ -438,6 +438,19 @@ uint64_t TrapDebugBreak(void* raw_context, uint64_t address) {
return 0;
}
+// AUDIT-030: log LR + r3..r6 when `log_lr_on_pc` PC is reached.
+uint64_t TrapLogLR(void* raw_context, uint64_t address) {
+ auto* ctx = reinterpret_cast<ppc::PPCContext_s*>(raw_context);
+ XELOGI(
+ "TRACE-PC-LR pc={:08X} lr={:08X} r3={:08X} r4={:08X} r5={:08X} "
+ "r6={:08X} r31={:08X}",
+ static_cast<uint32_t>(cvars::log_lr_on_pc),
+ static_cast<uint32_t>(ctx->lr), static_cast<uint32_t>(ctx->r[3]),
+ static_cast<uint32_t>(ctx->r[4]), static_cast<uint32_t>(ctx->r[5]),
+ static_cast<uint32_t>(ctx->r[6]), static_cast<uint32_t>(ctx->r[31]));
+ return 0;
+}
+
void X64Emitter::Trap(uint16_t trap_type) {
switch (trap_type) {
case 20:
@@ -454,6 +467,10 @@ void X64Emitter::Trap(uint16_t trap_type) {
case 25:
// ?
break;
+ case 100:
+ // AUDIT-030: log LR + r3..r6 (set via --log_lr_on_pc).
+ CallNative(TrapLogLR, 0);
+ break;
default:
XELOGW("Unknown trap type {}", trap_type);
db(0xCC);
diff --git a/src/xenia/cpu/cpu_flags.cc b/src/xenia/cpu/cpu_flags.cc
index 3ff067e15..d1f02f516 100644
--- a/src/xenia/cpu/cpu_flags.cc
+++ b/src/xenia/cpu/cpu_flags.cc
@@ -57,3 +57,8 @@ DEFINE_bool(break_condition_truncate, true, "truncate value to 32-bits", "CPU");
DEFINE_bool(break_on_debugbreak, true, "int3 on JITed __debugbreak requests.",
"CPU");
+
+// AUDIT-030: log LR + r3..r6 each time the given guest PC executes.
+DEFINE_uint64(log_lr_on_pc, 0,
+ "Log LR + r3..r6 each time the given guest PC is executed.",
+ "CPU");
diff --git a/src/xenia/cpu/cpu_flags.h b/src/xenia/cpu/cpu_flags.h
index 38c4f98ba..ad3d78581 100644
--- a/src/xenia/cpu/cpu_flags.h
+++ b/src/xenia/cpu/cpu_flags.h
@@ -35,4 +35,6 @@ DECLARE_bool(break_condition_truncate);
DECLARE_bool(break_on_debugbreak);
+DECLARE_uint64(log_lr_on_pc);
+
#endif // XENIA_CPU_CPU_FLAGS_H_
diff --git a/src/xenia/cpu/ppc/ppc_hir_builder.cc b/src/xenia/cpu/ppc/ppc_hir_builder.cc
index 42d996cba..5db977ae7 100644
--- a/src/xenia/cpu/ppc/ppc_hir_builder.cc
+++ b/src/xenia/cpu/ppc/ppc_hir_builder.cc
@@ -174,6 +174,12 @@ bool PPCHIRBuilder::Emit(GuestFunction* function, uint32_t flags) {
MaybeBreakOnInstruction(address);
+ // AUDIT-030: log LR + r3..r6 each time `log_lr_on_pc` is reached.
+ if (cvars::log_lr_on_pc != 0 && address == cvars::log_lr_on_pc) {
+ Comment("--log-lr-on-pc target");
+ Trap(100);
+ }
+
InstrData i;
i.address = address;
i.code = code;

View File

@@ -0,0 +1,139 @@
# AUDIT-046 — Loop-exit predicate at 0x82450904
**Date**: 2026-05-10
**Mode**: READ-ONLY
**xenia-rs HEAD**: `7bc9e3a` (unchanged)
**xenia-canary HEAD**: `6de80dffe` (patch reverted clean at session close)
**Discipline gate**: 5/5 PASS
## Question
Does the audit-034 / audit-035 frame-chain divergence at `sub_82450720+0x160..+0x1F4` reflect a real behavioral divergence — specifically, does the loop-exit `bne` predicate at PC `0x82450904` succeed early in canary (3.75/5 iters per audit-034) and fail every iter in ours (5/5)? If yes, audit-035's slot-pointer heap-region split (canary `0xBC3xxxxx` physical vs ours `0x4024xxxx` v40-bump) becomes a sharp causal target.
## Method
1. Re-applied audit-030 `--log_lr_on_pc` patch verbatim from `audit-runs/audit-045-cluster-ctor-probe/canary-patch.diff` (30 LOC, 4 files in xenia-canary). Saved here as `canary-patch.diff`.
2. Built canary Debug variant.
3. Probed canary at three PCs (60-90s wall each):
- `0x82450904` — the `bne` predicate itself
- `0x82450918` — the loop-completion no-match exit (post-`bdnz` block-entry)
- `0x82450934` — early-match handler (block-entry on predicate success while `r25<5`)
4. Probed ours at four block-entry PCs (`-n 500000000`):
- `0x82450720` — outer-call entry (`sub_82450720`)
- `0x82450890` — loop-back top
- `0x82450908` — post-bne fall-through (fires every iter that fails predicate)
- `0x82450918` — loop-completion no-match exit
5. Dumped slot table at `0x828F3BD4` + 2 adjacent windows in ours via `--dump-addr=0x828F3BD4,0x828F3C14,0x828F3C54`.
6. Reverted canary patch (`git checkout` of touched files) and confirmed clean tree.
⚠️ Per AUDIT-045 reading-error class #13: ours `--pc-probe` only fires at basic-block entry; canary `--log_lr_on_pc` fires per-instruction inline in HIR. `0x82450904` is the `bne` instruction itself (mid-block) → ours-side direct probe at that PC would yield 0 fires regardless. Worked around by probing the block-entry alternatives `0x82450908` (post-bne fall-through, fires every iter that fails) and `0x82450918` (loop-completion exit, fires once per outer call).
## Results
### Canary (per probe)
| PC | Site | Wall | Fires |
|----|------|------|-------|
| 0x82450904 | `bne` predicate | 70s | **140** |
| 0x82450918 | no-match completion | 70s | **22** outer-call completions |
| 0x82450934 | early-match handler | 70s | **0** |
Canary's predicate fires 140 times across 22 outer-call completions ≈ **5+ iters per outer call**. The predicate never resolves to `cr0.eq=1` (early-match handler `0x82450934` sees zero fires). Canary always exits via the no-match path.
### Ours (single multi-PC run, `-n 500000000`)
| PC | Site | Fires |
|----|------|-------|
| 0x82450720 | `sub_82450720` outer entry | 16 |
| 0x82450874 | post-prologue block-entry | 16 |
| 0x82450880 | post-prologue block-entry | 16 |
| 0x82450890 | loop-back top | **64** (= 16 outer × 4 loop-backs) |
| 0x82450908 | post-bne fall-through | **80** (= 16 outer × 5 fail iters) |
| 0x82450918 | no-match completion | **16** |
Ours exhibits **5/5 iters per outer call** with **0 early matches**, falling through to `0x82450918` exactly once per outer call.
### Slot table at `0x828F3BD4` (ours, end-of-run)
Walking 5 slots × 20 bytes from base, bytes `[0x0C..0x13]` per slot are the (ptr, size) pair:
| Slot | Offset | Content | Region |
|------|--------|---------|--------|
| 0 | 0xBD4 | all zeros | — |
| 1 | 0xBE8 | ptr=`0x4024A240` size=`0x00000008` | v40-bump |
| 2 | 0xBFC | ptr=`0x4024AEE0` size=`0x00000008` | v40-bump |
| 3 | 0xC10 | all zeros (audit-035's "over-cycled" slot, now stable) | — |
| 4 | 0xC24 | ptr=`0x4024A300` size=`0x00000008` | v40-bump |
Slot 0 zero in both engines per audit-035. Audit-035 reported canary slots 1/2/4 holding `0xBC3xxxxx` physical-heap pointers; here ours slots 1/2/4 hold `0x4024xxxx` v40-bump pointers. **Region split confirmed and persistent.**
## Verdict
### Hypothesis FALSIFIED
The loop-exit predicate at `0x82450904` does **not** match in either engine. Both engines:
1. Run the full 5/5 iters every outer call.
2. Never resolve the predicate to `cr0.eq=1` (canary `0x82450934` early-match handler sees 0 fires).
3. Exit via the no-match path at `0x82450918`.
### Why audit-035's region split is behaviorally inert
The predicate at `0x82450904` compares two values:
- **LHS**: a sum derived by `sub_82451E20`'s vptr-walk return (objects in the same heap region as the slot table)
- **RHS**: each slot's local sum (ptr + size pair from the slot table itself)
Both LHS and RHS originate from the **same heap region within a given engine**. In ours, both come from v40-bump (`0x4024xxxx`). In canary, both come from physical (`0xBC3xxxxx`). The cross-engine address-space difference is **internally consistent** within each engine's view, so it cancels as a divergence cause at this predicate.
The slot-table region split is REAL DATA but does NOT gate any predicate behavior here. **The data observation does not become a behavioral divergence.**
### Why audit-034's "canary 3.75/5 vs ours 5/5" measurement is also falsified
Canary 70s probe yields 140 fires of `0x82450904` across 22 outer-call completions = ~6.4 fires/call (5 fail-iters + tail). Ours yields 80 fail-iter fires across 16 outer-call completions = exactly 5/5. **Both engines exhibit identical 5/5 loop shape.** Audit-034's earlier measurement was either pre-overhaul or stale.
## Strategic implication
The audit-035/036 frame-chain divergence at `sub_82450720` is now triple-refuted as a causal target:
| Audit | Refuted layer |
|-------|---------------|
| 036 | "η-class record-layout divergence as stated" — refined to ε-class heap-region |
| 043 | ε-class heap-region as "missing/wrong write at +0x00" — VA-equality fallacy (12th reading-error class) |
| 046 | ε-class heap-region as causally responsible at predicate `0x82450904` (this audit) |
**Recommendation: drop the `sub_82450720` chain entirely as a critical-path target.** The slot-table region split is data hygiene, not a behavioral gate.
## Reading-error class 13 reconfirmed
Mid-block PCs are unprobeable in ours via `--pc-probe`; canary's `--log_lr_on_pc` fires per-instruction. Working pattern validated here: probe the post-bne block-entry PC (`0x82450908`) instead — fires every fail iter as expected (80 = 16×5). Plus the loop-completion block-entry (`0x82450918`) for outer-call counting (16). Future audits should follow this pattern when the target is a mid-block predicate.
## Recommended AUDIT-047
**γ-cluster handle wedges per audit-042**. Concrete stalled handles at end-of-run in our impl: `0x10A0+0x10A4` (Event+Sema worker pair, tid=6), `0x12AC` (Sema with 2 waiters, tid=14,15), `0x1004` (Event/Manual, tid=11), plus `0x1020/0x1040/0x1544/0x1578`. These are γ-class missing-signaler bugs — concrete and reachable.
Sharp 4-dim cascade prediction (γ-fix on a single wedge):
- A: signal_attempts on the wedged handle 0 → ≥1
- B: stalled tid state Blocked → Ready
- C: `<NO_SIGNALS>` count drops ≥2
- D: `swaps>2` OR `draws>0` UNKNOWN — γ-cluster typically plateaus on a sister wedge, low cascade probability per audit-042
Cost: 1 ours run + 1-2 canary probes ≈ ~10 min runtime + analysis.
## Discipline confirmation
- xenia-rs HEAD `7bc9e3a` unchanged. No source modifications, no commits.
- xenia-canary HEAD `6de80dffe` clean tree (`git status --short` empty for tracked files after revert).
- Tests count: not re-run (no source changes; preserved at 645 per audit-038 baseline).
- Lockstep determinism: not re-run (no source changes).
- Master plateau: swaps=2 draws=0 intact.
## Trace artifacts (this directory)
- `canary-patch.diff` — verbatim audit-045 patch
- `canary-0x82450904.{log,err}` — 22MB, 140 fires
- `canary-0x82450918.{log,err}` — 21MB, 22 outer-call completions
- `canary-0x82450934.{log,err}` — 28MB, **0 fires** (early-match handler)
- `ours-entry-probe.{log,err}` — 16 outer-call entries
- `ours-loop-probe.{log,err}` — 64 loop-back fires + 16 completion fires
- `ours-loop-detailed.{log,err}` — 80 post-bne fall-through fires + 16 completion fires
- `slot-table-dump-ours.{log,err}` — 5-slot table at 0x828F3BD4 with v40-bump pointers
- `findings.md` — this document

View File

@@ -0,0 +1,15 @@
2026-05-10T11:19:02.387616Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:02.395110Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:02.398441Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.327647Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.508850Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.522842Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.637209Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.645932Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.691646Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.707953Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.814012Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.817431Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.875516Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:03.885774Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:19:04.795726Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-604626-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL

View File

@@ -0,0 +1,15 @@
2026-05-10T11:21:04.910989Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:04.917973Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:04.921111Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:05.850263Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.022790Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.035444Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.128662Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.137666Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.183248Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.193709Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.257561Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.260198Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.293602Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:06.301593Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:21:07.210063Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-605791-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL

View File

@@ -0,0 +1,15 @@
2026-05-10T11:01:02.767571Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:02.774626Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:02.777712Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:03.705328Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:03.876914Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:03.889109Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:03.980513Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:03.989115Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:04.031892Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:04.042230Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:04.104331Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:04.106975Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:04.140543Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:04.148696Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL
2026-05-10T11:01:05.057206Z  WARN xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-594921-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL

View File

@@ -0,0 +1,694 @@
2026-05-10T11:12:43.414819Z  INFO cmd_exec:load_xex_data: xenia_rs: detected disc image, extracting default.xex path=sylpheed.iso path=sylpheed.iso
2026-05-10T11:12:43.416189Z  INFO cmd_exec: xenia_rs: XEX file format compression="normal (LZX)" encryption="normal (AES)" path=sylpheed.iso
2026-05-10T11:12:43.416199Z  INFO cmd_exec: xenia_rs: loading XEX entry=0x824ab748 base=0x82000000 path=sylpheed.iso
2026-05-10T11:12:43.482500Z  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-10T11:12:43.482869Z  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-10T11:12:43.487099Z  INFO cmd_exec: xenia_rs: import thunks mapped thunks=194 path=sylpheed.iso
2026-05-10T11:12:43.487313Z  INFO cmd_exec: xenia_rs: dump addresses armed: 3 (0x828f3bd4, 0x828f3c14, 0x828f3c54) path=sylpheed.iso
2026-05-10T11:12:43.487476Z  INFO cmd_exec: xenia_rs: starting execution limit=500000000 path=sylpheed.iso
2026-05-10T11:12:43.487483Z  INFO cmd_exec: xenia_rs: gpu: threaded backend — spawning worker thread path=sylpheed.iso
2026-05-10T11:12:43.492293Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x100000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.492314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x40005000 size=0x10000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.492383Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=10 flags=0x00000400 result=1 lr=0x824ab598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.716935Z  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(500000000) ips=None
2026-05-10T11:12:43.716978Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="partition0" err=File not found: partition0 handle=0x100c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x1010 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717538Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0/" err=File not found: Cache0/ handle=0x1014 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717560Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XexCheckExecutablePrivilege priv=11 flags=0x00000400 result=0 lr=0x824a99a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717582Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: args v1=0x02080002 v2=0x00000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717607Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=2 on hw=1 entry=0x824a93c8 start_ctx=0x828a28f0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717618Z  INFO cmd_exec:run_execution: xenia_kernel::xam: XamTaskSchedule: tid=2 handle=0x1018 hw=1 callback=0x824a93c8 message=0x828a28f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717751Z  INFO cmd_exec:run_execution: xenia_kernel::exports: Synthesized empty file for missing path: path="Cache0" err=File not found: Cache0 handle=0x101c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717763Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtAllocateVirtualMemory: base=0x4acc5000 size=0xff000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717875Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=3 on hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.717882Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=3 handle=0x1024 hw=2 entry=0x82181830 start_ctx=0x828f3d08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.718558Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x102c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.718582Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=4 on hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.718588Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=4 handle=0x1030 hw=2 entry=0x8245a5d0 start_ctx=0x828f4838 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.718627Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1034 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.718713Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.718743Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.718767Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.719075Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="config.ini" size=400 handle=0x1038 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.719182Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=5 on hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.719189Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=5 handle=0x1048 hw=2 entry=0x82450a28 start_ctx=0x828f3b68 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.719452Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 400 bytes from "config.ini" @ 0 (handle=0x1038) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-600782-0/d4ea4615e46ee8ca.tmp" disp=3 size=0 handle=0x1050 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720160Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 400 bytes to "cache:/d4ea4615e46ee8ca.tmp" @ 0 (handle=0x1050) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1054 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720287Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/access" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720304Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/recent" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615" host="/tmp/xenia-rs-cache-600782-0/d4ea4615" disp=2 size=0 handle=0x1058 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720491Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/d4ea4615") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.720512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/d4ea4615e46ee8ca.tmp" host="/tmp/xenia-rs-cache-600782-0/d4ea4615e46ee8ca.tmp" disp=1 size=400 handle=0x105c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.724450Z  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=0x1060 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.726618Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.pak" size=964 handle=0x106c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.726854Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 964 bytes from "dat/tables.pak" @ 0 (handle=0x106c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727424Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45ce534ffea.tmp" disp=3 size=0 handle=0x1074 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727463Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 964 bytes to "cache:/69d8e45ce534ffea.tmp" @ 0 (handle=0x1074) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1078 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727669Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x107c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727695Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 12 bytes to "cache:/access" @ 0 (handle=0x107c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x1080 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727798Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 8 bytes to "cache:/recent" @ 0 (handle=0x1080) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c" host="/tmp/xenia-rs-cache-600782-0/69d8e45c" disp=2 size=0 handle=0x1084 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.727969Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.728007Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45ce534ffea.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45ce534ffea.tmp" disp=1 size=964 handle=0x1088 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.729211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/tables.p00" size=435498 handle=0x1090 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.729474Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 206848 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.729824Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=6 on hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.729833Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=6 handle=0x10a8 hw=2 entry=0x82457ef0 start_ctx=0x828f3b08 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730469Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45c9355f2f8.tmp" disp=3 size=0 handle=0x10ac path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730520Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c9355f2f8.tmp" @ 0 (handle=0x10ac) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730564Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10b0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730824Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x10b4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730852Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/access" @ 0 (handle=0x10b4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730946Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x10b8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.730971Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 16 bytes to "cache:/recent" @ 0 (handle=0x10b8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.731206Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.731244Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.731281Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c9355f2f8.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45c9355f2f8.tmp" disp=1 size=2048 handle=0x10bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.736283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: VdSetGraphicsInterruptCallback(0x824be9a0, 0x4244df00) — callback armed path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.736416Z  INFO xenia_gpu::gpu_system: gpu: ring initialized base=0x0adcc000 size_bytes=4096 size_dwords=1024
2026-05-10T11:12:43.736431Z  INFO xenia_gpu::gpu_system: gpu: rptr writeback enabled addr=0x008619fc block_dwords=64
2026-05-10T11:12:43.736445Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=7 on hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false pri=0 mask=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:43.736453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=7 handle=0x10cc hw=2 entry=0x824cd458 start_ctx=0x42450b3c suspended=false aff=0x04 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.637846Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=1 fb=0x0b1d8000 width=1280 height=720
2026-05-10T11:12:44.660345Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=8 on hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.660361Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=8 handle=0x10d8 hw=4 entry=0x822f1ee0 start_ctx=0x40d09a40 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.661833Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/tables.p00" @ 86016 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.662734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-600782-0/aab216c3a2c8c185.tmp" disp=3 size=0 handle=0x10ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.662859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 102400 bytes to "cache:/aab216c3a2c8c185.tmp" @ 0 (handle=0x10ec) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.662903Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x10f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.663649Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x10f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.663693Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 36 bytes to "cache:/access" @ 0 (handle=0x10f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.663781Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.663923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x10f8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.663965Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 24 bytes to "cache:/recent" @ 0 (handle=0x10f8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.664278Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3" host="/tmp/xenia-rs-cache-600782-0/aab216c3" disp=2 size=0 handle=0x10fc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.664305Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.664327Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c3a2c8c185.tmp" host="/tmp/xenia-rs-cache-600782-0/aab216c3a2c8c185.tmp" disp=1 size=102400 handle=0x1100 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.853045Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.pak" size=114244 handle=0x1108 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.853353Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 114244 bytes from "dat/sound.pak" @ 0 (handle=0x1108) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858007Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45c939a9dcc.tmp" disp=3 size=0 handle=0x1110 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858173Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 114244 bytes to "cache:/69d8e45c939a9dcc.tmp" @ 0 (handle=0x1110) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858241Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1114 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858511Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x1118 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858547Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/access" @ 0 (handle=0x1118) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858612Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x111c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.858747Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 32 bytes to "cache:/recent" @ 0 (handle=0x111c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.859120Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.859155Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.859191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c939a9dcc.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45c939a9dcc.tmp" disp=1 size=114244 handle=0x1120 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.870203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/sound.p04" size=14903296 handle=0x1128 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.870524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/sound.p04" @ 5931008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.871397Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45c973a5c0a.tmp" disp=3 size=0 handle=0x1138 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.871453Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/69d8e45c973a5c0a.tmp" @ 0 (handle=0x1138) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.871499Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x113c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.871948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x1140 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.871975Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 60 bytes to "cache:/access" @ 0 (handle=0x1140) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.872010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.872077Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x1144 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.872102Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 40 bytes to "cache:/recent" @ 0 (handle=0x1144) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.872334Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.872354Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.872375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45c973a5c0a.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45c973a5c0a.tmp" disp=1 size=2048 handle=0x1148 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.913360Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=9 on hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true pri=0 mask=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.913375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=9 handle=0x114c hw=4 entry=0x824d2878 start_ctx=0x00000000 suspended=true aff=0x10 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.913404Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=10 on hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true pri=0 mask=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.913409Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=10 handle=0x1150 hw=5 entry=0x824d2940 start_ctx=0x00000000 suspended=true aff=0x20 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.913810Z  INFO cmd_exec:run_execution: xenia_kernel::exports: XAudioRegisterRenderDriverClient: index=0 callback=0x824d6640 arg=0x41e9dd5c wrapped=0x4b9f0000 driver=0x41550000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.968684Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 5933056 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.969049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6064128 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.969242Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6195200 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.969428Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6326272 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.969674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6457344 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.969867Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6588416 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.970199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6719488 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.970503Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6850560 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.970764Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 6981632 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.970928Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7112704 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.971089Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7243776 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.971249Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7374848 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.971409Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7505920 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.971575Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7636992 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.971895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7768064 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.972158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 7899136 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.972415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8030208 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.972674Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8161280 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.972837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8292352 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.972997Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8423424 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.973158Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8554496 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.973487Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8685568 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.973705Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8816640 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.973899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 8947712 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.974081Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9078784 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.974401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9209856 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.974731Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9340928 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.975055Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9472000 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.975388Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9603072 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.975663Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9734144 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.975826Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9865216 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.975989Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 9996288 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.976149Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10127360 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.976309Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10258432 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.976469Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10389504 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.976679Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10520576 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.976844Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10651648 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.977009Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10782720 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.977220Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 10913792 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.977381Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11044864 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.977540Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11175936 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.977793Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11307008 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.977956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11438080 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.978117Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11569152 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.978282Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11700224 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.978442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11831296 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.978607Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 11962368 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.978859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12093440 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.979021Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12224512 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.979182Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12355584 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.979342Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12486656 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.979501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12617728 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.979754Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12748800 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.979956Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 12879872 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.980122Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13010944 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.980283Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13142016 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.980443Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13273088 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.980614Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13404160 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.980949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13535232 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.981213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13666304 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.981475Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13797376 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.981690Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 13928448 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.981851Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14059520 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.982011Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14190592 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.982176Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14321664 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.982501Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14452736 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.982774Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14583808 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.983038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/sound.p04" @ 14714880 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.983217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 57344 bytes from "dat/sound.p04" @ 14845952 (handle=0x1128) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.985381Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=11 on hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.985395Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=11 handle=0x1270 hw=0 entry=0x82178950 start_ctx=0x828f3ec0 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.985711Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=12 on hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.985720Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=12 handle=0x127c hw=0 entry=0x821748f0 start_ctx=0x4024a640 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.987288Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "dat/tables.p00" @ 77824 (handle=0x1090) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.988256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-600782-0/aab216c35ee70e0a.tmp" disp=3 size=0 handle=0x1294 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.988312Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2048 bytes to "cache:/aab216c35ee70e0a.tmp" @ 0 (handle=0x1294) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.988355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1298 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.988931Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x129c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.988959Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/access" @ 0 (handle=0x129c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.988996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.989070Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x12a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.989095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 48 bytes to "cache:/recent" @ 0 (handle=0x12a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.989580Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/aab216c3" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.989605Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/aab216c3") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.989628Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/aab216c35ee70e0a.tmp" host="/tmp/xenia-rs-cache-600782-0/aab216c35ee70e0a.tmp" disp=1 size=2048 handle=0x12a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.990407Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=13 on hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.990415Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=13 handle=0x12a8 hw=0 entry=0x821c4ad0 start_ctx=0x40929b60 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.990505Z  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(500000000) ips=None
2026-05-10T11:12:44.990512Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=14 handle=0x12b0 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.990547Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=15 on hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.990563Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=15 handle=0x12b4 hw=4 entry=0x822c6870 start_ctx=0x828f3300 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.994966Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Base.xpr" size=8507404 handle=0x12bc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.996981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.pak" size=208 handle=0x12c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.997242Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 208 bytes from "dat/GP_TITLE.pak" @ 0 (handle=0x12c8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.997910Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45cc295ead8.tmp" disp=3 size=0 handle=0x12d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.997973Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 208 bytes to "cache:/69d8e45cc295ead8.tmp" @ 0 (handle=0x12d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.998025Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x12d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.998390Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x12d8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.998425Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 84 bytes to "cache:/access" @ 0 (handle=0x12d8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.998483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.998600Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x12dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.998638Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 56 bytes to "cache:/recent" @ 0 (handle=0x12dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.999013Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/69d8e45c" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.999046Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/69d8e45c") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:44.999082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/69d8e45cc295ead8.tmp" host="/tmp/xenia-rs-cache-600782-0/69d8e45cc295ead8.tmp" disp=1 size=208 handle=0x12e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.000115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.000973Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 0 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.006200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="dat/GP_TITLE.p00" size=12283578 handle=0x12f0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.014468Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/ptc_pack.xpr" size=20654092 handle=0x12f4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.018319Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 131072 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.018694Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 262144 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.018955Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 393216 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.019418Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 524288 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.019858Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 655360 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.020139Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 786432 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.020435Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 917504 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.020777Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1048576 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.021211Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1179648 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.021498Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1310720 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.021778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1441792 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.022250Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1572864 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.022550Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1703936 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.027433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1832960 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.031532Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 1964032 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.031806Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2095104 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.031989Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2226176 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.032170Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2357248 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.032351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2488320 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.032637Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2619392 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.032819Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2750464 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.033133Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 2881536 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.033471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3012608 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.033687Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3143680 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.033869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3274752 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.034050Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3405824 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.034229Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3536896 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.034408Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3667968 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.034659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3799040 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.034975Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 3930112 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.035294Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4061184 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.035477Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4192256 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.035686Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4323328 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.035866Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4454400 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.036046Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4585472 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.036272Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4716544 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.036604Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4847616 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.036867Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 4978688 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.037125Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5109760 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.037401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5240832 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.037660Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5371904 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.037977Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5502976 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.038161Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5634048 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.038342Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5765120 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.038665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 5896192 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.038926Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6027264 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.039111Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6158336 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.039474Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6289408 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.039696Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6420480 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.039878Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6551552 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.040058Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6682624 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.040239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6813696 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.040419Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 6944768 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.040664Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7075840 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.040980Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7206912 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.041298Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7337984 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.041481Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7469056 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.041688Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7600128 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.041869Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7731200 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.042049Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7862272 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.042232Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 7993344 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.042413Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8124416 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.042734Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/Base.xpr" @ 8255488 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.042948Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 120844 bytes from "hidden/Resource3D/Base.xpr" @ 8386560 (handle=0x12bc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.046398Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 51200 bytes from "dat/GP_TITLE.p00" @ 0 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.048635Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002cdba806e.tmp" disp=3 size=0 handle=0x1430 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.048739Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 49530 bytes to "cache:/87719002cdba806e.tmp" @ 0 (handle=0x1430) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.048795Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1434 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x1438 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049230Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/access" @ 0 (handle=0x1438) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049280Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049394Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x143c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049431Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 64 bytes to "cache:/recent" @ 0 (handle=0x143c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049670Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002" host="/tmp/xenia-rs-cache-600782-0/87719002" disp=2 size=0 handle=0x1440 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049700Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.049740Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cdba806e.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002cdba806e.tmp" disp=1 size=49530 handle=0x1444 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.050162Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.050653Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 51200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.053200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: File opened: path="hidden/Resource3D/Common.xpr" size=593932 handle=0x1450 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.056666Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 102400 bytes from "dat/GP_TITLE.p00" @ 182272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.064495Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002cec0a96e.tmp" disp=3 size=0 handle=0x145c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.064702Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 232205 bytes to "cache:/87719002cec0a96e.tmp" @ 0 (handle=0x145c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.064756Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1460 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065181Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x1464 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065217Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 108 bytes to "cache:/access" @ 0 (handle=0x1464) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065270Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065351Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x1468 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 72 bytes to "cache:/recent" @ 0 (handle=0x1468) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065637Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065666Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.065703Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cec0a96e.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002cec0a96e.tmp" disp=1 size=232205 handle=0x146c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.066599Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 507904 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.071508Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 638976 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.071758Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 770048 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.071929Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 901120 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.072095Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1032192 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.072284Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1163264 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.072473Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1294336 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.072698Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1425408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.072992Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1556480 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.073179Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1687552 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.073365Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1818624 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.073701Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 1949696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.074033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2080768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.074314Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2211840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.074502Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2342912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.074704Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2473984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.074892Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2605056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.075082Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2736128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.075269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2867200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.075603Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 2998272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.075925Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 100352 bytes from "dat/GP_TITLE.p00" @ 3129344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.169698Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002a60fcb85.tmp" disp=3 size=0 handle=0x14c4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.171253Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 2721352 bytes to "cache:/87719002a60fcb85.tmp" @ 0 (handle=0x14c4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.171306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14c8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.171845Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x14cc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.171873Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 120 bytes to "cache:/access" @ 0 (handle=0x14cc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.171899Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.171961Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x14d0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.171984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 80 bytes to "cache:/recent" @ 0 (handle=0x14d0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.172140Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.172172Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.172204Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a60fcb85.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002a60fcb85.tmp" disp=1 size=2721352 handle=0x14d4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.172900Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "dat/GP_TITLE.p00" @ 468992 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.174894Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002285d8849.tmp" disp=3 size=0 handle=0x14dc path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.174968Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 38706 bytes to "cache:/87719002285d8849.tmp" @ 0 (handle=0x14dc) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175017Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x14e0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175538Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x14e4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175584Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 132 bytes to "cache:/access" @ 0 (handle=0x14e4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175645Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175723Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x14e8 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175763Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 88 bytes to "cache:/recent" @ 0 (handle=0x14e8) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175967Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.175989Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.176010Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002285d8849.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002285d8849.tmp" disp=1 size=38706 handle=0x14ec path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.176482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3229696 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.180970Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3360768 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.181144Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3491840 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.181313Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3622912 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.181482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3753984 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.181699Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 3885056 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.181868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4016128 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.182034Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4147200 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.182203Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4278272 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.182370Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "dat/GP_TITLE.p00" @ 4409344 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.182518Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 88064 bytes from "dat/GP_TITLE.p00" @ 4540416 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.229823Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002a715f485.tmp" disp=3 size=0 handle=0x151c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.230200Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 1398049 bytes to "cache:/87719002a715f485.tmp" @ 0 (handle=0x151c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.230268Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1520 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.230778Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x1524 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.230805Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 144 bytes to "cache:/access" @ 0 (handle=0x1524) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.230832Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.230897Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x1528 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.230920Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 96 bytes to "cache:/recent" @ 0 (handle=0x1528) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.231061Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.231079Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.231098Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002a715f485.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002a715f485.tmp" disp=1 size=1398049 handle=0x152c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.231600Z  INFO cmd_exec:run_execution: xenia_rs: HW thread returned to LR sentinel — marking exited hw_id=1 tid=Some(12) is_main=false cycle=18592099 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.231818Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 116736 bytes from "dat/GP_TITLE.p00" @ 284672 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.231854Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=16 on hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.231865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=16 handle=0x153c hw=4 entry=0x824563e0 start_ctx=0x828f3e70 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.233817Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=17 on hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.233826Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=17 handle=0x154c hw=4 entry=0x82170430 start_ctx=0x828f4070 suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.238527Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002cf2a8ccd.tmp" disp=3 size=0 handle=0x1558 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.238647Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 115604 bytes to "cache:/87719002cf2a8ccd.tmp" @ 0 (handle=0x1558) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.238697Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x155c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x1560 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240579Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 156 bytes to "cache:/access" @ 0 (handle=0x1560) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240640Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240762Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=18 on hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240770Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=18 handle=0x1570 hw=0 entry=0x823dde30 start_ctx=0x828f3c4c suspended=false aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240827Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x1574 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240860Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 104 bytes to "cache:/recent" @ 0 (handle=0x1574) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240915Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=19 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=19 handle=0x1580 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.240993Z  INFO cmd_exec:run_execution: xenia_cpu::scheduler: spawn: tid=20 on hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true pri=0 mask=0xff path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.241000Z  INFO cmd_exec:run_execution: xenia_kernel::exports: ExCreateThread: tid=20 handle=0x1588 hw=2 entry=0x823ddb50 start_ctx=0x828f3c88 suspended=true aff=0x00 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.241375Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.241399Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.241426Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/87719002cf2a8ccd.tmp" host="/tmp/xenia-rs-cache-600782-0/87719002cf2a8ccd.tmp" disp=1 size=115604 handle=0x158c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:45.242692Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 67584 bytes from "dat/GP_TITLE.p00" @ 401408 (handle=0x12f0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.143082Z  INFO xenia_gpu::gpu_system: gpu: XE_SWAP (kernel-direct) frame=2 fb=0x0b1d8000 width=1280 height=720
2026-05-10T11:12:46.147886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-600782-0/8771900201a2db9c.tmp" disp=3 size=0 handle=0x1594 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.147991Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 66079 bytes to "cache:/8771900201a2db9c.tmp" @ 0 (handle=0x1594) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.148051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open (dir) path="cache:/" disp=1 handle=0x1598 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.149944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/access" host="/tmp/xenia-rs-cache-600782-0/access" disp=5 size=0 handle=0x159c path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.149979Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 168 bytes to "cache:/access" @ 0 (handle=0x159c) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.150043Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open MISS path="cache:/ignore" disp=1 -> NOT_FOUND path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.150210Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/recent" host="/tmp/xenia-rs-cache-600782-0/recent" disp=5 size=0 handle=0x15a0 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.150245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtWriteFile cache: 112 bytes to "cache:/recent" @ 0 (handle=0x15a0) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.150748Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open COLLISION path="cache:/87719002" disp=2 -> NAME_COLLISION path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.150775Z  WARN cmd_exec:run_execution: xenia_kernel::exports: cache create_dir_all("/tmp/xenia-rs-cache-600782-0/87719002") failed: File exists (os error 17) — falling back to STATUS_UNSUCCESSFUL path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.150804Z  INFO cmd_exec:run_execution: xenia_kernel::exports: cache open OK path="cache:/8771900201a2db9c.tmp" host="/tmp/xenia-rs-cache-600782-0/8771900201a2db9c.tmp" disp=1 size=66079 handle=0x15a4 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.152265Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 0 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.160528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 131072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.160923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 262144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.161316Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 393216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.161714Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 524288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.162106Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 655360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.162491Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 786432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.162883Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 917504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.163263Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1048576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.163655Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1179648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.164034Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1310720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.164417Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1441792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.164813Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1572864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.165442Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1703936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.166009Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1835008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.166399Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 1966080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.167038Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2097152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.167427Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2228224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.167817Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2359296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.168213Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2490368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.168596Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2621440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.168982Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2752512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.169366Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 2883584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.169754Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3014656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.170138Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3145728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.170528Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3276800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.170916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3407872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.171312Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3538944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.171791Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3670016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.172183Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3801088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.172574Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 3932160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.173094Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4063232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.173483Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4194304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.173868Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4325376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.174256Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4456448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.174759Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4587520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.175145Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4718592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.175533Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4849664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.176141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 4980736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.176524Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5111808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.176913Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5242880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.177423Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5373952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.177984Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5505024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.178399Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5636096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.178793Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5767168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.179177Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 5898240 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.179567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6029312 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.180125Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6160384 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.180525Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6291456 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.180996Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38912 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6422528 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.184033Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6459392 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.193705Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6590464 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.194199Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6721536 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.194659Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6852608 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.195051Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 6983680 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.195479Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7114752 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.195917Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7245824 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.196306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7376896 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.196780Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7507968 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.197306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7639040 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.197802Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7770112 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.198186Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 7901184 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.198572Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8032256 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.199115Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8163328 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.199505Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8294400 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.199992Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8425472 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.200385Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8556544 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.201025Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8687616 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.201433Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8818688 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.201992Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 8949760 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.202382Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9080832 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.202769Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9211904 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.203169Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9342976 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.203565Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9474048 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.204005Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9605120 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.204401Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9736192 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.204789Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9867264 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.205346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 9998336 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.205864Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10129408 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.206392Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10260480 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.206954Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10391552 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.207464Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10522624 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.208185Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10653696 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.208995Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10784768 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.209419Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 10915840 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.209895Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11046912 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.210482Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11177984 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.210915Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11309056 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.211324Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11440128 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.211859Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11571200 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.212269Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11702272 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.212837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11833344 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.213252Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 11964416 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.213837Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12095488 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.214245Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12226560 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.214876Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12357632 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.215827Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12488704 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.216239Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12619776 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.216716Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12750848 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.217141Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 12881920 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.217949Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13012992 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.218359Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13144064 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.218871Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13275136 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.219275Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13406208 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.219746Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13537280 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.220129Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13668352 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.220521Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13799424 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.220923Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 13930496 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.221306Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14061568 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.221709Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14192640 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.222091Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14323712 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.222536Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14454784 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.223002Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14585856 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.223727Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14716928 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.224402Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14848000 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.224886Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 14979072 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.225291Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15110144 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.225865Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15241216 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.226494Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15372288 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.226920Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15503360 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.227449Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15634432 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.227916Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15765504 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.228321Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 15896576 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.229522Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16027648 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.230194Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16158720 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.230609Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16289792 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.231151Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16420864 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.231567Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16551936 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.232166Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16683008 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.232582Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16814080 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.233205Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 16945152 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.233634Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17076224 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.234259Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17207296 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.234770Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17338368 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.235349Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17469440 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.235867Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17600512 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.236771Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17731584 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.237471Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17862656 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.237913Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 17993728 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.238517Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18124800 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.238935Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18255872 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.239569Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18386944 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.240042Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18518016 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.240841Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18649088 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.241665Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18780160 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.242191Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 18911232 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.242808Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19042304 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.243219Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19173376 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.243944Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19304448 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.244355Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19435520 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.244914Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19566592 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.245323Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19697664 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.245935Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19828736 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.246346Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 19959808 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.246981Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20090880 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.247389Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20221952 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.248583Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20353024 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.249295Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 131072 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20484096 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.249770Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 38924 bytes from "hidden/Resource3D/ptc_pack.xpr" @ 20615168 (handle=0x12f4) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:12:46.254025Z  INFO cmd_exec:run_execution: xenia_kernel::exports: NtReadFile: 2048 bytes from "hidden/Resource3D/Common.xpr" @ 0 (handle=0x1450) path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:13:05.337034Z  INFO cmd_exec:run_execution: xenia_rs: reached max instruction count limit=500000000 path=sylpheed.iso max=Some(500000000) ips=None
2026-05-10T11:13:05.338810Z  INFO cmd_exec: xenia_rs: in-memory trace log entries=0 path=sylpheed.iso
2026-05-10T11:13:05.339064Z  INFO cmd_exec: xenia_rs: exec complete wall_ms=21924 instructions=500000019 import_calls=5629636 unimplemented=0 path=sylpheed.iso
2026-05-10T11:13:05.346604Z  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} = 3
counter kernel.calls{name=KeGetCurrentProcessType} = 3
counter kernel.calls{name=RtlInitializeCriticalSection} = 29
counter kernel.calls{name=RtlEnterCriticalSection} = 889112
counter kernel.calls{name=RtlLeaveCriticalSection} = 889111
counter kernel.calls{name=XexCheckExecutablePrivilege} = 2
counter kernel.calls{name=XGetAVPack} = 1
counter kernel.calls{name=KeTlsAlloc} = 2
counter kernel.calls{name=KeTlsSetValue} = 2
counter kernel.calls{name=KeQuerySystemTime} = 2
counter kernel.calls{name=RtlInitializeCriticalSectionAndSpinCount} = 104
counter kernel.calls{name=MmAllocatePhysicalMemoryEx} = 17
counter kernel.calls{name=NtCreateEvent} = 395
counter kernel.calls{name=KeQueryPerformanceFrequency} = 6
counter kernel.calls{name=NtCreateFile} = 90
counter kernel.calls{name=NtReadFile} = 344
counter kernel.calls{name=NtClose} = 502
counter kernel.calls{name=XeCryptSha} = 1
counter kernel.calls{name=XeKeysConsolePrivateKeySign} = 1
counter kernel.calls{name=NtWriteFile} = 63
counter kernel.calls{name=RtlInitAnsiString} = 173
counter kernel.calls{name=NtOpenFile} = 51
counter kernel.calls{name=NtDeviceIoControlFile} = 2
counter kernel.calls{name=IoDismountVolumeByFileHandle} = 1
counter kernel.calls{name=NtQueryVolumeInformationFile} = 18
counter kernel.calls{name=KeEnterCriticalRegion} = 4
counter kernel.calls{name=XamTaskSchedule} = 1
counter scheduler.spawn.ok = 19
counter kernel.calls{name=XamTaskCloseHandle} = 1
counter kernel.calls{name=KeWaitForSingleObject} = 5
counter kernel.calls{name=StfsCreateDevice} = 1
counter kernel.calls{name=ObCreateSymbolicLink} = 1
counter kernel.calls{name=ExRegisterTitleTerminateNotification} = 3
counter kernel.calls{name=KeSetEvent} = 1
counter kernel.calls{name=KeResetEvent} = 1
counter kernel.calls{name=KeLeaveCriticalRegion} = 4
counter kernel.calls{name=RtlNtStatusToDosError} = 64
counter kernel.calls{name=ExCreateThread} = 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} = 1489791
counter kernel.calls{name=NtCreateSemaphore} = 10
counter kernel.calls{name=NtQueryDirectoryFile} = 1
counter kernel.calls{name=NtQueryFullAttributesFile} = 16
counter kernel.calls{name=NtWaitForMultipleObjectsEx} = 865500
counter kernel.calls{name=NtDuplicateObject} = 36
counter kernel.calls{name=NtReleaseSemaphore} = 393
counter kernel.calls{name=NtQueryInformationFile} = 377
counter kernel.calls{name=NtSetInformationFile} = 60
counter kernel.calls{name=NtSetEvent} = 3334
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=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=VdQueryVideoMode} = 2
counter kernel.calls{name=VdQueryVideoFlags} = 2
counter kernel.calls{name=VdCallGraphicsNotificationRoutines} = 1
counter kernel.calls{name=VdRetrainEDRAMWorker} = 1
counter kernel.calls{name=VdRetrainEDRAM} = 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} = 3295
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} = 1489735
counter kernel.calls{name=XamUserGetSigninState} = 2
counter kernel.calls{name=XamUserGetXUID} = 1
counter kernel.calls{name=XamUserReadProfileSettings} = 2