Commit 4d1293f
wasm-gui XU5: Thunar block PINPOINTED to gtk_image_new_from_file("") empty-path hang + deterministic build fix
TWDBG window-init trace: ... -> e menus -> e2 "before sidepane gtk_image_new_from_file" = LAST
LINE, no e3. So thunar-window.c `gtk_image_new_from_file ("")` (an empty placeholder image) HANGS
(~75s, never returns). Platform/runtime edge case, not Thunars fault: gtk_image_new_from_file("")
-> gdk_pixbuf_new_from_file("") -> the runtime opens path "" to sniff the format, and the
empty-path VFS open apparently hangs instead of returning ENOENT. Likely fix = the kernel VFS
returns ENOENT immediately for an empty path (platform layer, constraint #5).
Also fixed the flaky Thunar build for good: replaced `make distclean` with a direct clean (no
`make`), because the prior Makefile has AM_MAINTAINER_MODE on -> `make` tries to regenerate
Makefile.in via the wrong-version automake and wipes them. Direct clean + unconditional tarball
restore = deterministic build.
XU0-XU4 DONE; XU5 block pinpointed to the empty-path open hang. Next: minimal repro + VFS fix.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>1 parent bdacd77 commit 4d1293f
5 files changed
Lines changed: 39 additions & 17 deletions
File tree
- experiments/wasm-gui
- scripts
- third_party/thunar
- thunar
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
122 | 122 | | |
123 | 123 | | |
124 | 124 | | |
| 125 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
39 | 45 | | |
40 | 46 | | |
41 | 47 | | |
| |||
0 commit comments