5 Oct
2025
5 Oct
'25
4:19 p.m.
Jinoh Kang (@iamahuman) commented about dlls/ntdll/unix/signal_i386.c:
#define ESP_sig(context) ((context)->uc_mcontext.mc_esp)
#define FPU_sig(context) NULL /* FIXME */ #define FPUX_sig(context) NULL /* FIXME */ I think the real problem is the FPUX\_sig definitions. We should fix them instead:
```suggestion:-0+0 #define FPUX_sig(context) ((XSAVE_FORMAT *)NULL) /* FIXME */ ``` Ditto for other stub FPUX\_sigs. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9103#note_117626